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