diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 02:07:25 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 02:07:25 +0000 |
commit | b7e0a2a3ccf5aceb891d5e1dfaf9db1bbaaa5f78 (patch) | |
tree | d723b8556ad386a0b8a6e999e3a842e0bfe6f9b0 /app | |
parent | 1976d41ac728fcceb30f2df3c243cb7417f538f1 (diff) | |
download | chromium_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 'app')
-rw-r--r-- | app/app_switches.cc | 2 | ||||
-rw-r--r-- | app/app_switches.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/app_switches.cc b/app/app_switches.cc index f07fa32e6..f869d68 100644 --- a/app/app_switches.cc +++ b/app/app_switches.cc @@ -8,6 +8,6 @@ namespace switches { // The language file that we want to try to open. Of the form // language[-country] where language is the 2 letter code from ISO-639. -const wchar_t kLang[] = L"lang"; +const char kLang[] = "lang"; } // namespace switches diff --git a/app/app_switches.h b/app/app_switches.h index 1169b7f..b589153 100644 --- a/app/app_switches.h +++ b/app/app_switches.h @@ -9,7 +9,7 @@ namespace switches { -extern const wchar_t kLang[]; +extern const char kLang[]; } // namespace switches |