1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-11-23 17:42:46 +01:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IPopupHandler.cs

7 lines
158 B
C#

namespace TweetLib.Browser.CEF.Interfaces {
public interface IPopupHandler {
bool IsPopupAllowed(string url);
void OpenExternalBrowser(string url);
}
}