blob: 5c516803aa3f290edf9d5811f96723bb8f6e1a18 [file] [log] [blame]
using Microsoft.Phone.Controls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WPCordovaClassLib.CordovaLib
{
interface IBrowserDecorator
{
WebBrowser Browser { get; set; }
void InjectScript();
bool HandleCommand(string cmd);
}
}