| Index: chrome/browser/gpu_process_host.cc
|
| diff --git a/chrome/browser/gpu_process_host.cc b/chrome/browser/gpu_process_host.cc
|
| index 2f774fd63a50836999974aace505bfd9b10485db..1675603a4cf7b885da02ff43011a8dcfbb1c46cb 100644
|
| --- a/chrome/browser/gpu_process_host.cc
|
| +++ b/chrome/browser/gpu_process_host.cc
|
| @@ -76,8 +76,8 @@ bool GpuProcessHost::Init() {
|
| return false;
|
|
|
| const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
|
| - std::wstring gpu_launcher =
|
| - browser_command_line.GetSwitchValue(switches::kGpuLauncher);
|
| + CommandLine::StringType gpu_launcher =
|
| + browser_command_line.GetSwitchValueNative(switches::kGpuLauncher);
|
|
|
| FilePath exe_path = ChildProcessHost::GetChildPath(gpu_launcher.empty());
|
| if (exe_path.empty())
|
|
|