diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 19:40:28 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 19:40:28 +0000 |
commit | ea93fec3e697bedb13f1e60823eeb1edd295a1fd (patch) | |
tree | a417dae0253b5b0a3223e058501bc18da31bc31e /app/l10n_util_unittest.cc | |
parent | 571e31155b13e96295c3423c2da5280c3242e2ac (diff) | |
download | chromium_src-ea93fec3e697bedb13f1e60823eeb1edd295a1fd.zip chromium_src-ea93fec3e697bedb13f1e60823eeb1edd295a1fd.tar.gz chromium_src-ea93fec3e697bedb13f1e60823eeb1edd295a1fd.tar.bz2 |
Move/Copy paths used by app to app_paths.
http://crbug.com/11387
Review URL: http://codereview.chromium.org/113452
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16173 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/l10n_util_unittest.cc')
-rw-r--r-- | app/l10n_util_unittest.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/l10n_util_unittest.cc b/app/l10n_util_unittest.cc index b1f8c93..3503c096 100644 --- a/app/l10n_util_unittest.cc +++ b/app/l10n_util_unittest.cc @@ -4,6 +4,7 @@ #include "build/build_config.h" +#include "app/app_paths.h" #include "app/l10n_util.h" #if !defined(OS_MACOSX) #include "app/test/data/resource.h" @@ -16,7 +17,6 @@ #if defined(OS_WIN) #include "base/win_util.h" #endif -#include "chrome/common/chrome_paths.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" #include "unicode/locid.h" @@ -100,12 +100,12 @@ TEST_F(L10nUtilTest, GetAppLocale) { // Use a temporary locale dir so we don't have to actually build the locale // dlls for this test. FilePath orig_locale_dir; - PathService::Get(chrome::DIR_LOCALES, &orig_locale_dir); + PathService::Get(app::DIR_LOCALES, &orig_locale_dir); FilePath new_locale_dir; EXPECT_TRUE(file_util::CreateNewTempDirectory( FILE_PATH_LITERAL("l10n_util_test"), &new_locale_dir)); - PathService::Override(chrome::DIR_LOCALES, new_locale_dir.ToWStringHack()); + PathService::Override(app::DIR_LOCALES, new_locale_dir.ToWStringHack()); // Make fake locale files. std::string filenames[] = { "en-US", @@ -204,7 +204,7 @@ TEST_F(L10nUtilTest, GetAppLocale) { #endif // Clean up. - PathService::Override(chrome::DIR_LOCALES, orig_locale_dir.ToWStringHack()); + PathService::Override(app::DIR_LOCALES, orig_locale_dir.ToWStringHack()); file_util::Delete(new_locale_dir, true); UErrorCode error_code = U_ZERO_ERROR; Locale::setDefault(locale, error_code); |