diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 20:10:35 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 20:10:35 +0000 |
commit | 5bfb6636b2aad4f9ead758800a40f481cabfd912 (patch) | |
tree | cadbae44d0fafce43b245850bf8bc480a8bcf61a /app/l10n_util.cc | |
parent | 61632f50030e10d199c2173cff940af5f264b428 (diff) | |
download | chromium_src-5bfb6636b2aad4f9ead758800a40f481cabfd912.zip chromium_src-5bfb6636b2aad4f9ead758800a40f481cabfd912.tar.gz chromium_src-5bfb6636b2aad4f9ead758800a40f481cabfd912.tar.bz2 |
Revert 16173
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16176 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/l10n_util.cc')
-rw-r--r-- | app/l10n_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/l10n_util.cc b/app/l10n_util.cc index 8791024..611c21a 100644 --- a/app/l10n_util.cc +++ b/app/l10n_util.cc @@ -6,7 +6,6 @@ #include "app/l10n_util.h" -#include "app/app_paths.h" #include "app/app_switches.h" #include "app/gfx/canvas.h" #include "app/resource_bundle.h" @@ -18,6 +17,7 @@ #include "base/string_piece.h" #include "base/string_util.h" #include "base/sys_string_conversions.h" +#include "chrome/common/chrome_paths.h" #include "unicode/uscript.h" // TODO(playmobil): remove this undef once SkPostConfig.h is fixed. @@ -229,7 +229,7 @@ std::wstring GetApplicationLocale(const std::wstring& pref_locale) { return L"en"; #else FilePath locale_path; - PathService::Get(app::DIR_LOCALES, &locale_path); + PathService::Get(chrome::DIR_LOCALES, &locale_path); std::wstring resolved_locale; // First, check to see if there's a --lang flag. |