diff options
author | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 20:12:08 +0000 |
---|---|---|
committer | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 20:12:08 +0000 |
commit | 6fae79736f73e541b0ec3951adb1c4f83ba7428e (patch) | |
tree | 7c1ec5d8037e86e59812b907a74209967b292256 /ui/views/view.cc | |
parent | 9134cce6dc08d7e5962c228ecc1c5a1244e233ae (diff) | |
download | chromium_src-6fae79736f73e541b0ec3951adb1c4f83ba7428e.zip chromium_src-6fae79736f73e541b0ec3951adb1c4f83ba7428e.tar.gz chromium_src-6fae79736f73e541b0ec3951adb1c4f83ba7428e.tar.bz2 |
Replaced sk_canvas()->drawPath() with DrawPath()
Replaced sk_canvas()->drawColor() with DrawColor()
Removed any instances of #include "third_party/skia/include/core/SkCanvas.h"
Replaced DrawPath in touch_selection_controller_impl with DrawCircle call manually
Bug=114665
Test=Compiles
Review URL: http://codereview.chromium.org/10025011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/view.cc')
-rw-r--r-- | ui/views/view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc index 848a4df..0ebe617 100644 --- a/ui/views/view.cc +++ b/ui/views/view.cc @@ -1231,7 +1231,7 @@ void View::UpdateChildLayerBounds(const gfx::Point& offset) { void View::OnPaintLayer(gfx::Canvas* canvas) { if (!layer() || !layer()->fills_bounds_opaquely()) - canvas->sk_canvas()->drawColor(SK_ColorBLACK, SkXfermode::kClear_Mode); + canvas->DrawColor(SK_ColorBLACK, SkXfermode::kClear_Mode); PaintCommon(canvas); } |