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

Unified Diff: views/examples/tabbed_pane_example.h

Issue 248016: Another case where we need to allow "this" in the constructor. (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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/tabbed_pane_example.h
===================================================================
--- views/examples/tabbed_pane_example.h (revision 27348)
+++ views/examples/tabbed_pane_example.h (working copy)
@@ -5,6 +5,7 @@
#ifndef VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_
#define VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_
+#include "base/compiler_specific.h"
#include "base/string_util.h"
#include "views/controls/button/text_button.h"
#include "views/controls/tabbed_pane/tabbed_pane.h"
@@ -20,10 +21,14 @@
TabbedPaneExample(views::TabbedPane* parent, views::Label* message)
: ExampleBase(message),
tabbed_pane_(new views::TabbedPane()),
- add_(new views::TextButton(this, L"Add")),
- add_at_(new views::TextButton(this, L"Add At 1")),
- remove_at_(new views::TextButton(this, L"Remove At 1")),
- select_at_(new views::TextButton(this, L"Select At 1")) {
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ add_(new views::TextButton(this, L"Add"))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ add_at_(new views::TextButton(this, L"Add At 1"))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ remove_at_(new views::TextButton(this, L"Remove At 1"))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ select_at_(new views::TextButton(this, L"Select At 1"))) {
views::View* container = new views::View();
parent->AddTab(L"Tabbed Pane", container);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698