Index: content/browser/renderer_host/pepper/browser_ppapi_host_impl.h |
diff --git a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h |
index 70fe5164392e020611196083ca18e030b908ca33..9271805e29200207e1bcf9e299f84e9012c4369b 100644 |
--- a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h |
+++ b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.h |
@@ -30,7 +30,7 @@ class CONTENT_EXPORT BrowserPpapiHostImpl : public BrowserPpapiHost { |
BrowserPpapiHostImpl(IPC::Sender* sender, |
const ppapi::PpapiPermissions& permissions, |
const std::string& plugin_name, |
- const FilePath& profile_data_directory, |
+ const base::FilePath& profile_data_directory, |
ProcessType plugin_process_type); |
virtual ~BrowserPpapiHostImpl(); |
@@ -42,7 +42,7 @@ class CONTENT_EXPORT BrowserPpapiHostImpl : public BrowserPpapiHost { |
int* render_process_id, |
int* render_view_id) const OVERRIDE; |
virtual const std::string& GetPluginName() OVERRIDE; |
- virtual const FilePath& GetProfileDataDirectory() OVERRIDE; |
+ virtual const base::FilePath& GetProfileDataDirectory() OVERRIDE; |
virtual GURL GetDocumentURLForInstance(PP_Instance instance) OVERRIDE; |
virtual GURL GetPluginURLForInstance(PP_Instance instance) OVERRIDE; |
@@ -87,7 +87,7 @@ class CONTENT_EXPORT BrowserPpapiHostImpl : public BrowserPpapiHost { |
scoped_ptr<ppapi::host::PpapiHost> ppapi_host_; |
base::ProcessHandle plugin_process_handle_; |
std::string plugin_name_; |
- FilePath profile_data_directory_; |
+ base::FilePath profile_data_directory_; |
ProcessType plugin_process_type_; |
// Tracks all PP_Instances in this plugin and associated renderer-related |