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

Unified Diff: chrome/browser/ui/views/dropdown_bar_view.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: chrome/browser/ui/views/dropdown_bar_view.h
diff --git a/chrome/browser/ui/views/dropdown_bar_view.h b/chrome/browser/ui/views/dropdown_bar_view.h
index 635f0a61d1fc15eba8dab29d611f13c258ab1be8..6c2b36d563153b04f05d085a45d492a1f30fc33e 100644
--- a/chrome/browser/ui/views/dropdown_bar_view.h
+++ b/chrome/browser/ui/views/dropdown_bar_view.h
@@ -11,8 +11,8 @@
#include "ui/views/accessible_pane_view.h"
namespace gfx {
-class Canvas;
-} // namespace gfx
+class CanvasSkia;
+}
////////////////////////////////////////////////////////////////////////////////
//
@@ -35,7 +35,7 @@ class DropdownBarView : public views::AccessiblePaneView,
protected:
// views::View:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
+ virtual void OnPaint(gfx::CanvasSkia* canvas) OVERRIDE;
// Returns the DropdownBarHost that manages this view.
DropdownBarHost* host() const { return host_; }

Powered by Google App Engine
This is Rietveld 408576698