mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-17 00:31:42 +02:00
.github
.idea
bld
lib
TweetLib.Browser
TweetLib.Browser.CEF
Component
Data
Dialogs
Interfaces
IBrowserWrapper.cs
ICefAdapter.cs
IDragDataAdapter.cs
IErrorCodeAdapter.cs
IFileDialogCallbackAdapter.cs
IFileDialogOpener.cs
IFrameAdapter.cs
IJsDialogCallbackAdapter.cs
IJsDialogOpener.cs
IMenuModelAdapter.cs
IPopupHandler.cs
IRequestAdapter.cs
IResourceHandlerFactory.cs
IResponseAdapter.cs
Logic
Utils
Lib.cs
TweetLib.Browser.CEF.csproj
TweetLib.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json
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);
|
|
}
|
|
}
|