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/gfx | |
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/gfx')
-rw-r--r-- | app/gfx/icon_util_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/gfx/icon_util_unittest.cc b/app/gfx/icon_util_unittest.cc index ed65ca52..27f749d 100644 --- a/app/gfx/icon_util_unittest.cc +++ b/app/gfx/icon_util_unittest.cc @@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "app/app_paths.h" #include "app/gfx/icon_util.h" #include "base/gfx/size.h" #include "base/scoped_ptr.h" #include "base/file_util.h" #include "base/path_service.h" -#include "chrome/common/chrome_paths.h" #include "third_party/skia/include/core/SkBitmap.h" #include "testing/gtest/include/gtest/gtest.h" @@ -20,7 +20,7 @@ namespace { class IconUtilTest : public testing::Test { public: IconUtilTest() { - PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_); + PathService::Get(app::DIR_TEST_DATA, &test_data_directory_); } ~IconUtilTest() {} |