diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 19:40:48 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 19:40:48 +0000 |
commit | 162b5998f0e5caa333d9f348207b7f5a649f8eac (patch) | |
tree | 7dfa4be96d7f361e6185c1430f49b919afc08805 /chrome/common | |
parent | e36fd81da9e64f3c373cdf45d195d6d402d4b2c0 (diff) | |
download | chromium_src-162b5998f0e5caa333d9f348207b7f5a649f8eac.zip chromium_src-162b5998f0e5caa333d9f348207b7f5a649f8eac.tar.gz chromium_src-162b5998f0e5caa333d9f348207b7f5a649f8eac.tar.bz2 |
wstring: remove a needless wchar_t that is ASCII
While I'm at it, remove kNotSignedInID. This was added in 2007 (!)
and appears to be unused.
BUG=76112
Review URL: http://codereview.chromium.org/6695004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78260 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_constants.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_constants.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc index 648ee3d..f1752c8 100644 --- a/chrome/common/chrome_constants.cc +++ b/chrome/common/chrome_constants.cc @@ -69,8 +69,7 @@ const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; -const wchar_t kNotSignedInProfile[] = L"Default"; -const wchar_t kNotSignedInID[] = L"not-signed-in"; +const char kNotSignedInProfile[] = "Default"; const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); diff --git a/chrome/common/chrome_constants.h b/chrome/common/chrome_constants.h index 530c69d..5a4befc 100644 --- a/chrome/common/chrome_constants.h +++ b/chrome/common/chrome_constants.h @@ -30,8 +30,7 @@ extern const wchar_t kStatusTrayWindowClass[]; extern const wchar_t kMessageWindowClass[]; extern const wchar_t kCrashReportLog[]; extern const wchar_t kTestingInterfaceDLL[]; -extern const wchar_t kNotSignedInProfile[]; -extern const wchar_t kNotSignedInID[]; +extern const char kNotSignedInProfile[]; extern const char kStatsFilename[]; extern const wchar_t kBrowserResourcesDll[]; extern const wchar_t kNaClAppName[]; |