mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Android: add WebBrowserComponent implementation.
This commit is contained in:
parent
e2ae08e111
commit
073921445c
16 changed files with 1014 additions and 80 deletions
|
|
@ -136,7 +136,7 @@ public:
|
|||
private:
|
||||
//==============================================================================
|
||||
class Pimpl;
|
||||
Pimpl* browser;
|
||||
ScopedPointer<Pimpl> browser;
|
||||
bool blankPageShown, unloadPageWhenBrowserIsHidden;
|
||||
String lastURL;
|
||||
StringArray lastHeaders;
|
||||
|
|
@ -145,6 +145,10 @@ private:
|
|||
void reloadLastURL();
|
||||
void checkWindowAssociation();
|
||||
|
||||
#if JUCE_ANDROID
|
||||
friend bool juce_webViewPageLoadStarted (WebBrowserComponent*, const String&);
|
||||
#endif
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (WebBrowserComponent)
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue