diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-10 15:01:10 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-10 15:01:10 +0000 |
commit | 53c8fdf0f2abd695a66237d901a8d74eb45bb6d0 (patch) | |
tree | c3d96f89afce15dc055b0c2b3b9f32aadc2d9e8a /chrome/common | |
parent | 6addd9e9debd24130c31cdfab55c84bca9bfdc72 (diff) | |
download | chromium_src-53c8fdf0f2abd695a66237d901a8d74eb45bb6d0.zip chromium_src-53c8fdf0f2abd695a66237d901a8d74eb45bb6d0.tar.gz chromium_src-53c8fdf0f2abd695a66237d901a8d74eb45bb6d0.tar.bz2 |
Remove base dependency from image_operations and associated unittests. I also renamed the namespace from "gfx" to "skia".
This also adds back the image_operations_unittest to a project (this had gotten lost in my move).
Review URL: http://codereview.chromium.org/13143
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6706 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/gfx/icon_util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/gfx/icon_util.cc b/chrome/common/gfx/icon_util.cc index 58c8020..b3b56a2 100644 --- a/chrome/common/gfx/icon_util.cc +++ b/chrome/common/gfx/icon_util.cc @@ -403,9 +403,9 @@ void IconUtil::CreateResizedBitmapSet(const SkBitmap& bitmap_to_resize, inserted_original_bitmap = true; } } - bitmaps->push_back(gfx::ImageOperations::Resize( - bitmap_to_resize, gfx::ImageOperations::RESIZE_LANCZOS3, - gfx::Size(icon_dimensions_[i], icon_dimensions_[i]))); + bitmaps->push_back(skia::ImageOperations::Resize( + bitmap_to_resize, skia::ImageOperations::RESIZE_LANCZOS3, + icon_dimensions_[i], icon_dimensions_[i])); } if (!inserted_original_bitmap) { |