summaryrefslogtreecommitdiffstats
path: root/base/base_switches.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 02:07:25 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 02:07:25 +0000
commitb7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78 (patch)
treed723b8556ad386a0b8a6e999e3a842e0bfe6f9b0 /base/base_switches.cc
parent1976d41ac728fcceb30f2df3c243cb7417f538f1 (diff)
downloadchromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.zip
chromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.tar.gz
chromium_src-b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78.tar.bz2
Use ASCII strings for switch names.
Review URL: http://codereview.chromium.org/270062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28779 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_switches.cc')
-rw-r--r--base/base_switches.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/base/base_switches.cc b/base/base_switches.cc
index b13517a..2613623 100644
--- a/base/base_switches.cc
+++ b/base/base_switches.cc
@@ -9,29 +9,29 @@ namespace switches {
// If the program includes chrome/common/debug_on_start.h, the process will
// start the JIT system-registered debugger on itself and will wait for 60
// seconds for the debugger to attach to itself. Then a break point will be hit.
-const wchar_t kDebugOnStart[] = L"debug-on-start";
+const char kDebugOnStart[] = "debug-on-start";
// Will wait for 60 seconds for a debugger to come to attach to the process.
-const wchar_t kWaitForDebugger[] = L"wait-for-debugger";
+const char kWaitForDebugger[] = "wait-for-debugger";
// Suppresses all error dialogs when present.
-const wchar_t kNoErrorDialogs[] = L"noerrdialogs";
+const char kNoErrorDialogs[] = "noerrdialogs";
// Disables the crash reporting.
-const wchar_t kDisableBreakpad[] = L"disable-breakpad";
+const char kDisableBreakpad[] = "disable-breakpad";
// Generates full memory crash dump.
-const wchar_t kFullMemoryCrashReport[] = L"full-memory-crash-report";
+const char kFullMemoryCrashReport[] = "full-memory-crash-report";
// The value of this switch determines whether the process is started as a
// renderer or plugin host. If it's empty, it's the browser.
-const wchar_t kProcessType[] = L"type";
+const char kProcessType[] = "type";
// Enable DCHECKs in release mode.
-const wchar_t kEnableDCHECK[] = L"enable-dcheck";
+const char kEnableDCHECK[] = "enable-dcheck";
// Disable win_util::MessageBox. This is useful when running as part of
// scripts that do not have a user interface.
-const wchar_t kNoMessageBox[] = L"no-message-box";
+const char kNoMessageBox[] = "no-message-box";
} // namespace switches