diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 16:29:38 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 16:29:38 +0000 |
commit | 2752a49a7aa82d7375e97cde7c8a3d3af80a4047 (patch) | |
tree | 112a400ef11e4c1f02329c8cfb13758418f80c4c /views/examples/native_theme_checkbox_example.h | |
parent | 258ffc5314093be40b510db22239e0ace4bbb006 (diff) | |
download | chromium_src-2752a49a7aa82d7375e97cde7c8a3d3af80a4047.zip chromium_src-2752a49a7aa82d7375e97cde7c8a3d3af80a4047.tar.gz chromium_src-2752a49a7aa82d7375e97cde7c8a3d3af80a4047.tar.bz2 |
Changing Checkbox class to use NativeTheme class for rendering instead of
native controls. The original Checkbox class is renamed to NativeCheckbox.
BUG=None
TEST=The affected locations are: chromeos EULA page, uninstall view,
chromeos wifi config, and create application shortcut view. Should verify
that checkboxes in these locations look and behave as they did before.
Review URL: http://codereview.chromium.org/7082041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87484 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/examples/native_theme_checkbox_example.h')
-rw-r--r-- | views/examples/native_theme_checkbox_example.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/examples/native_theme_checkbox_example.h b/views/examples/native_theme_checkbox_example.h index 4bd83c7..21faf97 100644 --- a/views/examples/native_theme_checkbox_example.h +++ b/views/examples/native_theme_checkbox_example.h @@ -12,12 +12,12 @@ #include "views/examples/example_base.h" namespace views { -class CheckboxNt; +class Checkbox; } namespace examples { -// NativeThemeCheckboxExample exercises a CheckboxNt control. +// NativeThemeCheckboxExample exercises a Checkbox control. class NativeThemeCheckboxExample : public ExampleBase, public views::ButtonListener { public: @@ -34,7 +34,7 @@ class NativeThemeCheckboxExample : public ExampleBase, const views::Event& event) OVERRIDE; // The only control in this test. - views::CheckboxNt* button_; + views::Checkbox* button_; int count_; |