Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5346)

Unified Diff: chrome/common/gfx/icon_util.cc

Issue 13726: Move Image operations and convolver to the skia namespace and clean up a few ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/views/tabs/tab_renderer.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/gfx/icon_util.cc
===================================================================
--- chrome/common/gfx/icon_util.cc (revision 6868)
+++ chrome/common/gfx/icon_util.cc (working copy)
@@ -403,9 +403,9 @@
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) {
« no previous file with comments | « chrome/browser/views/tabs/tab_renderer.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698