diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-06 22:26:45 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-06 22:26:45 +0000 |
commit | 3d2c6fb2b9f63f9be135751a011d68bb92bd7c3a (patch) | |
tree | e399db957a94243d81a6aac7ff5afde407c58276 /ui/base/ui_base_switches.cc | |
parent | 83b5886a9084c85ecf279a06a604d68d999ea103 (diff) | |
download | chromium_src-3d2c6fb2b9f63f9be135751a011d68bb92bd7c3a.zip chromium_src-3d2c6fb2b9f63f9be135751a011d68bb92bd7c3a.tar.gz chromium_src-3d2c6fb2b9f63f9be135751a011d68bb92bd7c3a.tar.bz2 |
Move kLocalePak into ui/base/ from base/. Fixes component build of views_desktop.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7312010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91621 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/ui_base_switches.cc')
-rw-r--r-- | ui/base/ui_base_switches.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc index 6a5b3a4..73a5606 100644 --- a/ui/base/ui_base_switches.cc +++ b/ui/base/ui_base_switches.cc @@ -1,6 +1,6 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. Use of this -// source code is governed by a BSD-style license that can be found in the -// LICENSE file. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. #include "ui/base/ui_base_switches.h" @@ -10,4 +10,8 @@ namespace switches { // language[-country] where language is the 2 letter code from ISO-639. const char kLang[] = "lang"; +// Load the locale resources from the given path. When running on Mac/Unix the +// path should point to a locale.pak file. +const char kLocalePak[] = "locale_pak"; + } // namespace switches |