diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-28 19:36:00 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-28 19:36:00 +0000 |
commit | 1d9b33d9640fb304cc8680d4f2546e2c8b68fe69 (patch) | |
tree | 69310971313838845be36cbdac029ad88e3e09c2 /views/examples/radio_button_example.h | |
parent | 165fde8bf1c4872c8bfaada18c64e2b16b93c36d (diff) | |
download | chromium_src-1d9b33d9640fb304cc8680d4f2546e2c8b68fe69.zip chromium_src-1d9b33d9640fb304cc8680d4f2546e2c8b68fe69.tar.gz chromium_src-1d9b33d9640fb304cc8680d4f2546e2c8b68fe69.tar.bz2 |
Revert 83373 - Resubmitting change to fix a build break in the arm builder. The only changefrom the original code is in text_button.cc, line 402, where text_x isinitialized to 0.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/6902119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/examples/radio_button_example.h')
-rw-r--r-- | views/examples/radio_button_example.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/examples/radio_button_example.h b/views/examples/radio_button_example.h index 72217e2..92cf431 100644 --- a/views/examples/radio_button_example.h +++ b/views/examples/radio_button_example.h @@ -31,9 +31,9 @@ class RadioButtonExample : public ExampleBase, virtual void ButtonPressed(views::Button* sender, const views::Event& event) OVERRIDE; - // Two groups of 3 radio buttons. - views::RadioButton* radio_buttons_[3]; - views::RadioButtonNt* radio_buttons_nt_[3]; + // 6 radio buttons, 0-2 consists 1st group, and 3-5 consists + // 2nd group. + views::RadioButton* radio_buttons_[6]; // Control button to select radio buttons, and show the status of buttons. views::TextButton* select_; |