mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
9 lines
265 B
C#
9 lines
265 B
C#
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IFrameAdapter<T> {
|
|
bool IsValid(T frame);
|
|
bool IsMain(T frame);
|
|
void LoadUrl(T frame, string url);
|
|
void ExecuteJavaScriptAsync(T frame, string script, string identifier, int startLine = 1);
|
|
}
|
|
}
|