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

Unified Diff: ui/views/controls/focusable_border.cc

Issue 9562038: ui/gfx: Make gfx::Canvas inherit from gfx::CanvasSkia. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 10 months 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
Index: ui/views/controls/focusable_border.cc
diff --git a/ui/views/controls/focusable_border.cc b/ui/views/controls/focusable_border.cc
index 6e87758c09bb48d12b2fce64732e072e0858c05d..1a0cffc2f5bc5abd3121863fab1eaddcdb200e93 100644
--- a/ui/views/controls/focusable_border.cc
+++ b/ui/views/controls/focusable_border.cc
@@ -28,7 +28,7 @@ FocusableBorder::FocusableBorder()
kBottomInsetSize, kRightInsetSize) {
}
-void FocusableBorder::Paint(const View& view, gfx::Canvas* canvas) const {
+void FocusableBorder::Paint(const View& view, gfx::CanvasSkia* canvas) const {
SkPath path;
path.addRect(gfx::RectToSkRect(view.GetLocalBounds()), SkPath::kCW_Direction);
SkPaint paint;

Powered by Google App Engine
This is Rietveld 408576698