| Index: content/browser/gpu/gpu_process_host.cc
|
| diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
|
| index df5cf6115beb8f2c17b3649d7495e331d529a0e6..5063ae6a2ab936f54f0d4e51a99eb9674f89ea0d 100644
|
| --- a/content/browser/gpu/gpu_process_host.cc
|
| +++ b/content/browser/gpu/gpu_process_host.cc
|
| @@ -959,7 +959,7 @@ bool GpuProcessHost::LaunchGpuProcess(const std::string& channel_id) {
|
| int 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())
|
| return false;
|
|
|
| @@ -1033,7 +1033,7 @@ bool GpuProcessHost::LaunchGpuProcess(const std::string& channel_id) {
|
|
|
| process_->Launch(
|
| #if defined(OS_WIN)
|
| - FilePath(),
|
| + base::FilePath(),
|
| #elif defined(OS_POSIX)
|
| false,
|
| base::EnvironmentVector(),
|
|
|