summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_launcher.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-26 23:23:59 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-26 23:23:59 +0000
commit5fcc3f7533d627cfe55dc44349b0e7f6d242f133 (patch)
tree544831ffa763fb9e0a31e56a775461d264425073 /chrome_frame/chrome_launcher.cc
parent9ba64a829c23da719a8243fcb821c72c00fa616b (diff)
downloadchromium_src-5fcc3f7533d627cfe55dc44349b0e7f6d242f133.zip
chromium_src-5fcc3f7533d627cfe55dc44349b0e7f6d242f133.tar.gz
chromium_src-5fcc3f7533d627cfe55dc44349b0e7f6d242f133.tar.bz2
Blind attempt at fixing broken Chrome Frame build.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30122 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_launcher.cc')
-rw-r--r--chrome_frame/chrome_launcher.cc4
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();