Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(875)

Unified Diff: webkit/api/public/WebFrameClient.h

Issue 181014: Eliminate remaining WebCore dependencies from webplugin_impl.cc... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/api/public/WebFrameClient.h
===================================================================
--- webkit/api/public/WebFrameClient.h (revision 25087)
+++ webkit/api/public/WebFrameClient.h (working copy)
@@ -51,9 +51,7 @@
// 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 @@
// FIXME need to add:
// find-in-page
+
+ protected:
+ ~WebFrameClient() { }
};
} // namespace WebKit

Powered by Google App Engine
This is Rietveld 408576698