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

Unified Diff: content/browser/worker_host/worker_process_host.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
Index: content/browser/worker_host/worker_process_host.cc
diff --git a/content/browser/worker_host/worker_process_host.cc b/content/browser/worker_host/worker_process_host.cc
index 03ec6ed6c98e847f135c65e57afb3e31fd9784e1..0799ee7c4be268bf076e99e46bc1a7e038465fbe 100644
--- a/content/browser/worker_host/worker_process_host.cc
+++ b/content/browser/worker_host/worker_process_host.cc
@@ -136,7 +136,7 @@ bool WorkerProcessHost::Init(int render_process_id) {
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;
@@ -191,7 +191,7 @@ bool WorkerProcessHost::Init(int render_process_id) {
process_->Launch(
#if defined(OS_WIN)
- FilePath(),
+ base::FilePath(),
#elif defined(OS_POSIX)
use_zygote,
base::EnvironmentVector(),
« no previous file with comments | « content/browser/worker_host/test/worker_browsertest.cc ('k') | content/browser/zygote_host/zygote_host_impl_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698