summaryrefslogtreecommitdiffstats
path: root/content/browser/ppapi_plugin_process_host.cc
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.cc
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.cc')
-rw-r--r--content/browser/ppapi_plugin_process_host.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
index 3d07a60..1ea54d1 100644
--- a/content/browser/ppapi_plugin_process_host.cc
+++ b/content/browser/ppapi_plugin_process_host.cc
@@ -74,7 +74,7 @@ PpapiPluginProcessHost::~PpapiPluginProcessHost() {
// static
PpapiPluginProcessHost* PpapiPluginProcessHost::CreatePluginHost(
const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver) {
PpapiPluginProcessHost* plugin_host = new PpapiPluginProcessHost(
info, profile_data_directory, host_resolver);
@@ -166,7 +166,7 @@ void PpapiPluginProcessHost::OpenChannelToPlugin(Client* client) {
PpapiPluginProcessHost::PpapiPluginProcessHost(
const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver)
: permissions_(
ppapi::PpapiPermissions::GetForCommandLine(info.permissions)),
@@ -202,7 +202,7 @@ PpapiPluginProcessHost::PpapiPluginProcessHost()
// The plugin name and profile data directory shouldn't be needed for the
// broker.
std::string plugin_name;
- FilePath profile_data_directory;
+ base::FilePath profile_data_directory;
host_impl_.reset(new BrowserPpapiHostImpl(this, permissions, plugin_name,
profile_data_directory,
process_->GetData().type));
@@ -230,7 +230,7 @@ bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
#else
int flags = ChildProcessHost::CHILD_NORMAL;
#endif
- FilePath exe_path = ChildProcessHost::GetChildPath(flags);
+ base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
if (exe_path.empty())
return false;
@@ -284,7 +284,7 @@ bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
#endif // OS_POSIX
process_->Launch(
#if defined(OS_WIN)
- FilePath(),
+ base::FilePath(),
#elif defined(OS_POSIX)
use_zygote,
base::EnvironmentVector(),