summaryrefslogtreecommitdiffstats
path: root/content/browser/ppapi_plugin_process_host.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 19:20:34 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 19:20:34 +0000
commit2dec8ec385e65c80571c5723dc572264a934b7c9 (patch)
treef30b887d1fa77930cc7b9bbc1a0c6a13b7437255 /content/browser/ppapi_plugin_process_host.h
parent60e28106a326d40d9ba117d18be0abcd954c8832 (diff)
downloadchromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.zip
chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.gz
chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.bz2
Use base namespace for FilePath in content/browser
Review URL: https://codereview.chromium.org/12213066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/ppapi_plugin_process_host.h')
-rw-r--r--content/browser/ppapi_plugin_process_host.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h
index c5b6bc1..01a43c9 100644
--- a/content/browser/ppapi_plugin_process_host.h
+++ b/content/browser/ppapi_plugin_process_host.h
@@ -76,7 +76,7 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
static PpapiPluginProcessHost* CreatePluginHost(
const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver);
static PpapiPluginProcessHost* CreateBrokerHost(
const PepperPluginInfo& info);
@@ -107,8 +107,8 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
// channel is ready or if there's an error.
void OpenChannelToPlugin(Client* client);
- const FilePath& plugin_path() const { return plugin_path_; }
- const FilePath& profile_data_directory() const {
+ const base::FilePath& plugin_path() const { return plugin_path_; }
+ const base::FilePath& profile_data_directory() const {
return profile_data_directory_;
}
@@ -120,7 +120,7 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
// Constructors for plugin and broker process hosts, respectively.
// You must call Init before doing anything else.
PpapiPluginProcessHost(const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver);
PpapiPluginProcessHost();
@@ -160,10 +160,10 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
std::queue<Client*> sent_requests_;
// Path to the plugin library.
- FilePath plugin_path_;
+ base::FilePath plugin_path_;
// Path to the top-level plugin data directory (differs based upon profile).
- FilePath profile_data_directory_;
+ base::FilePath profile_data_directory_;
const bool is_broker_;