summaryrefslogtreecommitdiffstats
path: root/gfx/icon_util_unittest.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-14 19:06:30 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-14 19:06:30 +0000
commit98af9aca7168f061bfaae5cd4f4eb3f7de4e70e7 (patch)
treeb2a1eafeb6863d2ca93615034b7dab005fd2e72b /gfx/icon_util_unittest.cc
parentc70d067f569f4d927e7be8f221f856812af396d7 (diff)
downloadchromium_src-98af9aca7168f061bfaae5cd4f4eb3f7de4e70e7.zip
chromium_src-98af9aca7168f061bfaae5cd4f4eb3f7de4e70e7.tar.gz
chromium_src-98af9aca7168f061bfaae5cd4f4eb3f7de4e70e7.tar.bz2
Create a path provider for gfx, allowing the removal of the temporary app dependency.
TBR=darin BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41552 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx/icon_util_unittest.cc')
-rw-r--r--gfx/icon_util_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gfx/icon_util_unittest.cc b/gfx/icon_util_unittest.cc
index 967a547..f7f9786 100644
--- a/gfx/icon_util_unittest.cc
+++ b/gfx/icon_util_unittest.cc
@@ -1,12 +1,12 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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 "app/app_paths.h"
#include "base/gfx/size.h"
#include "base/scoped_ptr.h"
#include "base/file_util.h"
#include "base/path_service.h"
+#include "gfx/gfx_paths.h"
#include "gfx/icon_util.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(app::DIR_TEST_DATA, &test_data_directory_);
+ PathService::Get(gfx::DIR_TEST_DATA, &test_data_directory_);
}
~IconUtilTest() {}