diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-27 01:18:34 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-27 01:18:34 +0000 |
commit | c46e187a8537f14d0af3f1879033c129a70ba0e2 (patch) | |
tree | 7a8fc410ee89b0cdc8ce4729f15fc504a45cab52 /views/native_theme_painter.cc | |
parent | c4f06dff5def187a1e2e276d5c83ea0aaeef3299 (diff) | |
download | chromium_src-c46e187a8537f14d0af3f1879033c129a70ba0e2.zip chromium_src-c46e187a8537f14d0af3f1879033c129a70ba0e2.tar.gz chromium_src-c46e187a8537f14d0af3f1879033c129a70ba0e2.tar.bz2 |
Revert 83110 - Add classes for native themed push buttons, radio buttons, and checkboxes.These controls expose the same public interface and the existing controlsof the same type to make it easier to change between the implementations.BUG=NoneTEST=The new controls should look and feel like native platform controlsR=ben@chromium.orgReview URL: http://codereview.chromium.org/6853015
TBR=rogerta@chromium.org
Review URL: http://codereview.chromium.org/6904040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83111 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/native_theme_painter.cc')
-rw-r--r-- | views/native_theme_painter.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/views/native_theme_painter.cc b/views/native_theme_painter.cc index a0913a6..7806f33 100644 --- a/views/native_theme_painter.cc +++ b/views/native_theme_painter.cc @@ -9,11 +9,10 @@ #include "ui/gfx/canvas.h" #include "ui/gfx/canvas_skia.h" #include "ui/gfx/rect.h" -#include "views/native_theme_delegate.h" namespace views { -NativeThemePainter::NativeThemePainter(NativeThemeDelegate* delegate) +NativeThemePainter::NativeThemePainter(Delegate* delegate) : delegate_(delegate) { DCHECK(delegate_); } |