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 /ui/gfx/canvas_linux.cc | |
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 'ui/gfx/canvas_linux.cc')
-rw-r--r-- | ui/gfx/canvas_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/canvas_linux.cc b/ui/gfx/canvas_linux.cc index 576eed2..9d417c9 100644 --- a/ui/gfx/canvas_linux.cc +++ b/ui/gfx/canvas_linux.cc @@ -157,7 +157,7 @@ void DrawStringContext::DrawWithHalo(SkColor text_color, const SkBitmap& text_bitmap = const_cast<SkBitmap&>( skia::GetTopDevice(*text_canvas.sk_canvas())->accessBitmap(false)); - canvas_->DrawBitmapInt(text_bitmap, text_rect_.x() - 1, text_rect_.y() - 1); + canvas_->DrawImageInt(text_bitmap, text_rect_.x() - 1, text_rect_.y() - 1); } void DrawStringContext::DrawUnderline(cairo_t* cr, double extra_edge_width) { |