summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/chrome_launcher.cc')
-rw-r--r--chrome_frame/chrome_launcher.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome_frame/chrome_launcher.cc b/chrome_frame/chrome_launcher.cc
index f992728..561e0ba 100644
--- a/chrome_frame/chrome_launcher.cc
+++ b/chrome_frame/chrome_launcher.cc
@@ -26,6 +26,7 @@ const wchar_t* kAllowedSwitches[] = {
switches::kNoFirstRun,
switches::kUserDataDir,
switches::kLoadExtension,
+ switches::kEnableRendererAccessibility,
};
CommandLine* CreateLaunchCommandLine() {
@@ -44,7 +45,7 @@ CommandLine* CreateLaunchCommandLine() {
if (file_util::PathExists(same_dir_path)) {
return new CommandLine(same_dir_path.ToWStringHack());
} else {
- FilePath servers_path =
+ 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.";