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

Unified Diff: views/examples/radio_button_example.h

Issue 242028: Fix build breakage by disabling a warning. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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
« no previous file with comments | « views/examples/message_box_example.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/radio_button_example.h
===================================================================
--- views/examples/radio_button_example.h (revision 27348)
+++ views/examples/radio_button_example.h (working copy)
@@ -5,6 +5,7 @@
#ifndef VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_
#define VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_
+#include "base/compiler_specific.h"
#include "base/string_util.h"
#include "views/controls/button/radio_button.h"
#include "views/controls/button/text_button.h"
@@ -18,8 +19,10 @@
public:
RadioButtonExample(views::TabbedPane* tabbed_pane, views::Label* message)
: ExampleBase(message),
- select_(new views::TextButton(this, L"Select")),
- status_(new views::TextButton(this, L"Show Status")) {
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ select_(new views::TextButton(this, L"Select"))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ status_(new views::TextButton(this, L"Show Status"))) {
int all = arraysize(radio_buttons_);
// divide buttons into 2 groups
« no previous file with comments | « views/examples/message_box_example.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698