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


CrOS-Libchrome-Original-Commit: b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78
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 @@
 // 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