diff options
author | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 13:29:20 +0000 |
---|---|---|
committer | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 13:29:20 +0000 |
commit | 243cac7d0d9961ec15cea368168b98b7a4522f8d (patch) | |
tree | 42fadb8cda77fc9c48d9b40439ac9aafc33d4550 /ash/launcher | |
parent | 3e03036a6033332a4611b1d28a2f85b42f13a7c9 (diff) | |
download | chromium_src-243cac7d0d9961ec15cea368168b98b7a4522f8d.zip chromium_src-243cac7d0d9961ec15cea368168b98b7a4522f8d.tar.gz chromium_src-243cac7d0d9961ec15cea368168b98b7a4522f8d.tar.bz2 |
Rename DrawBitmapInt to DrawImageInt
Bug=None
Test=Compiles
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=140877
Review URL: https://chromiumcodereview.appspot.com/10512021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141002 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/launcher')
-rw-r--r-- | ash/launcher/tabbed_launcher_button.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/launcher/tabbed_launcher_button.cc b/ash/launcher/tabbed_launcher_button.cc index 398e210..4bee325 100644 --- a/ash/launcher/tabbed_launcher_button.cc +++ b/ash/launcher/tabbed_launcher_button.cc @@ -91,12 +91,12 @@ void TabbedLauncherButton::IconView::OnPaint(gfx::Canvas* canvas) { int x = (width() - animating_image_.width()) / 2; int y = (height() - animating_image_.height()) / 2; canvas->SaveLayerAlpha(animation_->CurrentValueBetween(255, 0)); - canvas->DrawBitmapInt(animating_image_, x, y); + canvas->DrawImageInt(animating_image_, x, y); canvas->Restore(); } else { int x = (width() - image_.width()) / 2; int y = (height() - image_.height()) / 2; - canvas->DrawBitmapInt(image_, x, y); + canvas->DrawImageInt(image_, x, y); } } |