using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PPC.Common; using Tango.SharedUI; namespace Tango.PPC.Browser.ViewContracts { public interface IBrowserView : IPPCView { event EventHandler AddressChanged; bool CanGoBack(); void NavigateTo(String address); void GoBack(); } }