summaryrefslogtreecommitdiffstats
path: root/ui/gfx
diff options
context:
space:
mode:
authorrpaquay@chromium.org <rpaquay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-12 22:14:25 +0000
committerrpaquay@chromium.org <rpaquay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-12 22:14:25 +0000
commit75b91fd736541ed53b3e00e8c71c9930bd8534ee (patch)
treeee840bd7d12d40c2442c5ac797c26bb162680939 /ui/gfx
parentb70abd411d840cc329ac1ed54fce2ef0c8fcf809 (diff)
downloadchromium_src-75b91fd736541ed53b3e00e8c71c9930bd8534ee.zip
chromium_src-75b91fd736541ed53b3e00e8c71c9930bd8534ee.tar.gz
chromium_src-75b91fd736541ed53b3e00e8c71c9930bd8534ee.tar.bz2
Remove ImageLoadingTracker class, as it is not used anymore.
* Remove related methods in Extension: Set/GetCachedImage * Remove related unit tests * Update all comments mentioning ImageLoadingTracker to mention ImageLoader instead BUG=163929 TBR=sky@chromium.org (for mechanical changes in chrome/.) Review URL: https://chromiumcodereview.appspot.com/12213093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182039 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx')
-rw-r--r--ui/gfx/image/image_skia.cc2
-rw-r--r--ui/gfx/image/image_skia_unittest.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/gfx/image/image_skia.cc b/ui/gfx/image/image_skia.cc
index 01b332e..8f1379d 100644
--- a/ui/gfx/image/image_skia.cc
+++ b/ui/gfx/image/image_skia.cc
@@ -256,7 +256,7 @@ void ImageSkia::AddRepresentation(const ImageSkiaRep& image_rep) {
// and replace the existing rep if there is already one with the
// same scale factor so that we can guarantee that a ImageSkia
// instance contians only one image rep per scale factor. This is
- // not possible now as ImageLoadingTracker currently stores need
+ // not possible now as ImageLoader currently stores need
// this feature, but this needs to be fixed.
if (isNull()) {
Init(image_rep);
diff --git a/ui/gfx/image/image_skia_unittest.cc b/ui/gfx/image/image_skia_unittest.cc
index 9d6b29e..fd17453 100644
--- a/ui/gfx/image/image_skia_unittest.cc
+++ b/ui/gfx/image/image_skia_unittest.cc
@@ -172,7 +172,7 @@ TEST(ImageSkiaTest, DynamicSource) {
// Tests that image_reps returns all of the representations in the
// image when there are multiple representations for a scale factor.
-// This currently is the case with ImageLoadingTracker::LoadImages.
+// This currently is the case with ImageLoader::LoadImages.
TEST(ImageSkiaTest, ManyRepsPerScaleFactor) {
const int kSmallIcon1x = 16;
const int kSmallIcon2x = 32;