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

Unified Diff: ui/views/native_theme_painter.h

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/native_theme_painter.h
diff --git a/ui/views/native_theme_painter.h b/ui/views/native_theme_painter.h
index 1dcb75f060b76d429e32770ff1a951cb9e11d4ec..7e52734f8adcd2c813e0e04480b37692964b9dd2 100644
--- a/ui/views/native_theme_painter.h
+++ b/ui/views/native_theme_painter.h
@@ -10,7 +10,7 @@
#include "ui/views/painter.h"
namespace gfx {
-class Canvas;
+class CanvasSkia;
class Size;
}
@@ -35,7 +35,7 @@ class VIEWS_EXPORT NativeThemePainter : public Painter {
NativeThemeDelegate* delegate_;
// Overridden from Painter:
- virtual void Paint(gfx::Canvas* canvas, const gfx::Size& size) OVERRIDE;
+ virtual void Paint(gfx::CanvasSkia* canvas, const gfx::Size& size) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(NativeThemePainter);
};

Powered by Google App Engine
This is Rietveld 408576698