Index: content/browser/utility_process_host_impl.cc |
diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc |
index 2a0b43ce476202e3f7c7118268f627e26e8b3fd6..d2864276d6fc168118483afa0a733c6864f1946e 100644 |
--- a/content/browser/utility_process_host_impl.cc |
+++ b/content/browser/utility_process_host_impl.cc |
@@ -70,7 +70,7 @@ void UtilityProcessHostImpl::EndBatchMode() { |
Send(new UtilityMsg_BatchMode_Finished()); |
} |
-void UtilityProcessHostImpl::SetExposedDir(const FilePath& dir) { |
+void UtilityProcessHostImpl::SetExposedDir(const base::FilePath& dir) { |
exposed_dir_ = dir; |
} |
@@ -125,7 +125,7 @@ bool UtilityProcessHostImpl::StartProcess() { |
child_flags = ChildProcessHost::CHILD_NORMAL; |
#endif |
- FilePath exe_path = ChildProcessHost::GetChildPath(child_flags); |
+ base::FilePath exe_path = ChildProcessHost::GetChildPath(child_flags); |
if (exe_path.empty()) { |
NOTREACHED() << "Unable to get utility process binary name."; |
return false; |