diff options
Diffstat (limited to 'webkit/api/public/WebFrameClient.h')
-rw-r--r-- | webkit/api/public/WebFrameClient.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/api/public/WebFrameClient.h b/webkit/api/public/WebFrameClient.h index 8140997..bdb38fa 100644 --- a/webkit/api/public/WebFrameClient.h +++ b/webkit/api/public/WebFrameClient.h @@ -51,9 +51,7 @@ namespace WebKit { // Factory methods ----------------------------------------------------- // May return null. - virtual WebPlugin* createPlugin( - WebFrame*, const WebURL& source, const WebString& mimeType, - const WebString& classID, WebString* actualMimeType) = 0; + virtual WebPlugin* createPlugin(WebFrame*, const WebPluginParams&) = 0; // May return null. virtual WebWorker* createWorker(WebFrame*, WebWorkerClient*) = 0; @@ -189,6 +187,9 @@ namespace WebKit { // FIXME need to add: // find-in-page + + protected: + ~WebFrameClient() { } }; } // namespace WebKit |