Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1299)

Unified Diff: base/base_switches.cc

Issue 270062: Use ASCII strings for switch names. (Closed)
Patch Set: victory Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base_switches.h ('k') | base/command_line.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base_switches.cc
diff --git a/base/base_switches.cc b/base/base_switches.cc
index b13517abe5e35fb52384d58fde923de55efe10d0..26136230a9e74d9a4fe2011ff521ef7487dc1149 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
« no previous file with comments | « base/base_switches.h ('k') | base/command_line.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698