summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/npapi/webplugin_page_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/npapi/webplugin_page_delegate.h')
-rw-r--r--webkit/plugins/npapi/webplugin_page_delegate.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/plugins/npapi/webplugin_page_delegate.h b/webkit/plugins/npapi/webplugin_page_delegate.h
index ec4b34a..e632014 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.