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

Unified Diff: views/examples/message_box_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 | « no previous file | views/examples/radio_button_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/message_box_example.h
===================================================================
--- views/examples/message_box_example.h (revision 27348)
+++ views/examples/message_box_example.h (working copy)
@@ -5,6 +5,7 @@
#ifndef VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_
#define VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_
+#include "base/compiler_specific.h"
#include "base/string_util.h"
#include "views/controls/button/text_button.h"
#include "views/controls/message_box_view.h"
@@ -21,8 +22,10 @@
: ExampleBase(message),
message_box_view_(
new MessageBoxView(0, L"Message Box Message", L"Default Prompt")),
- status_(new views::TextButton(this, L"Show Status")),
- toggle_(new views::TextButton(this, L"Toggle Checkbox")) {
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ status_(new views::TextButton(this, L"Show Status"))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ toggle_(new views::TextButton(this, L"Toggle Checkbox"))) {
views::View* container = new views::View();
tabbed_pane->AddTab(L"Message Box View", container);
« no previous file with comments | « no previous file | views/examples/radio_button_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698