summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/public/WebViewClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/public/WebViewClient.h')
-rw-r--r--Source/WebKit/chromium/public/WebViewClient.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebViewClient.h b/Source/WebKit/chromium/public/WebViewClient.h
index 9a8ad05b2..9b39da7dd 100644
--- a/Source/WebKit/chromium/public/WebViewClient.h
+++ b/Source/WebKit/chromium/public/WebViewClient.h
@@ -60,6 +60,7 @@ class WebFileChooserCompletion;
class WebFrame;
class WebGeolocationClient;
class WebGeolocationService;
+class WebHelperPlugin;
class WebIconLoadingCompletion;
class WebImage;
class WebInputElement;
@@ -144,6 +145,10 @@ public:
// will never be called.
virtual bool enumerateChosenDirectory(const WebString& path, WebFileChooserCompletion*) { return false; }
+ // Creates the main WebFrame for the specified WebHelperPlugin.
+ // Called by WebHelperPlugin to provide the WebFrameClient interface for the WebFrame.
+ virtual void initializeHelperPluginWebFrame(WebHelperPlugin*) { }
+
// Navigational --------------------------------------------------------