diff options
Diffstat (limited to 'chrome_frame/chrome_launcher.cc')
-rw-r--r-- | chrome_frame/chrome_launcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/chrome_launcher.cc b/chrome_frame/chrome_launcher.cc index 1f9f0d1..93da068 100644 --- a/chrome_frame/chrome_launcher.cc +++ b/chrome_frame/chrome_launcher.cc @@ -42,13 +42,13 @@ CommandLine* CreateLaunchCommandLine() { FilePath current_dir = module_path.DirName(); FilePath same_dir_path = current_dir.Append(kLauncherExeBaseName); if (file_util::PathExists(same_dir_path)) { - return new CommandLine(same_dir_path.ToWStringHack()); + return new CommandLine(same_dir_path); } else { FilePath servers_path = current_dir.Append(L"servers").Append(kLauncherExeBaseName); DCHECK(file_util::PathExists(servers_path)) << "What module is this? It's not in 'servers' or main output dir."; - return new CommandLine(servers_path.ToWStringHack()); + return new CommandLine(servers_path); } } else { NOTREACHED(); |