summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-03 10:00:44 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-03 10:00:44 +0000
commit49aa5a338e8430c8424f6a344abc3b28515c598f (patch)
tree7cab2f122121ef0fe996e44c4b18bedf1b814370 /chrome/browser/chrome_browser_main.cc
parentdca619fdd84f1ec74dfcca0ef18c5abd0fdee3dc (diff)
downloadchromium_src-49aa5a338e8430c8424f6a344abc3b28515c598f.zip
chromium_src-49aa5a338e8430c8424f6a344abc3b28515c598f.tar.gz
chromium_src-49aa5a338e8430c8424f6a344abc3b28515c598f.tar.bz2
Cleanup: Remove some unused code, or make them platform specific.
Found by Scythe. Review URL: https://codereview.chromium.org/136113019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248465 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main.cc')
-rw-r--r--chrome/browser/chrome_browser_main.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index 2645084..95b8f18 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -525,11 +525,19 @@ void InitializeAllPrefHashStores() {
} // namespace
namespace chrome_browser {
+
// This error message is not localized because we failed to load the
// localization data files.
+#if defined(OS_WIN)
const char kMissingLocaleDataTitle[] = "Missing File Error";
+#endif
+
+#if defined(OS_WIN) || defined(TOOLKIT_GTK)
+// TODO(port) This should be used on Linux Aura as well. http://crbug.com/338969
const char kMissingLocaleDataMessage[] =
"Unable to find locale data files. Please reinstall.";
+#endif
+
} // namespace chrome_browser
// BrowserMainParts ------------------------------------------------------------