1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IFrameAdapter.cs

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);
}
}