mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
14 lines
386 B
C#
14 lines
386 B
C#
using System;
|
|
using TweetLib.Browser.CEF.Data;
|
|
|
|
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IBrowserWrapper<TFrame, TRequest> where TFrame : IDisposable {
|
|
string Url { get; }
|
|
TFrame MainFrame { get; }
|
|
|
|
void AddWordToDictionary(string word);
|
|
TRequest CreateGetRequest();
|
|
void RequestDownload(TFrame frame, TRequest request, DownloadCallbacks callbacks);
|
|
}
|
|
}
|