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

Unified Diff: webkit/plugins/npapi/webplugin_page_delegate.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « webkit/plugins/npapi/webplugin_impl.cc ('k') | webkit/plugins/ppapi/file_callbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/webplugin_page_delegate.h
diff --git a/webkit/plugins/npapi/webplugin_page_delegate.h b/webkit/plugins/npapi/webplugin_page_delegate.h
index ec4b34a26cd71bafaf56ea6ae9451a9ef1f11588..e632014b4349dcd96c659fc97e4c9fca5e821508 100644
--- a/webkit/plugins/npapi/webplugin_page_delegate.h
+++ b/webkit/plugins/npapi/webplugin_page_delegate.h
@@ -9,7 +9,9 @@
#include "ui/gfx/native_widget_types.h"
+namespace base {
class FilePath;
+}
namespace WebKit {
class WebCookieJar;
@@ -29,12 +31,12 @@ class WebPluginPageDelegate {
// new plugin is instanced. See CreateWebPluginDelegateHelper
// for a default WebPluginDelegate implementation.
virtual WebPluginDelegate* CreatePluginDelegate(
- const FilePath& file_path,
+ const base::FilePath& file_path,
const std::string& mime_type) = 0;
// Caled to create a replacement plug-in when loading a plug-in failed.
virtual WebKit::WebPlugin* CreatePluginReplacement(
- const FilePath& file_path) = 0;
+ const base::FilePath& file_path) = 0;
// Called when a windowed plugin is created.
// Lets the view delegate create anything it is using to wrap the plugin.
« no previous file with comments | « webkit/plugins/npapi/webplugin_impl.cc ('k') | webkit/plugins/ppapi/file_callbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698