summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/options/exceptions_page_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/options/exceptions_page_view.cc')
-rw-r--r--chrome/browser/views/options/exceptions_page_view.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/views/options/exceptions_page_view.cc b/chrome/browser/views/options/exceptions_page_view.cc
index daff30e..ecc9884 100644
--- a/chrome/browser/views/options/exceptions_page_view.cc
+++ b/chrome/browser/views/options/exceptions_page_view.cc
@@ -77,10 +77,12 @@ void ExceptionsTableModel::OnWebDataServiceRequestDone(
// ExceptionsPageView, public
ExceptionsPageView::ExceptionsPageView(Profile* profile)
: OptionsPageView(profile),
- remove_button_(this, l10n_util::GetString(
- IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_BUTTON)),
- remove_all_button_(this, l10n_util::GetString(
- IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_ALL_BUTTON)),
+ ALLOW_THIS_IN_INITIALIZER_LIST(remove_button_(
+ this,
+ l10n_util::GetString(IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_BUTTON))),
+ ALLOW_THIS_IN_INITIALIZER_LIST(remove_all_button_(
+ this,
+ l10n_util::GetString(IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_ALL_BUTTON))),
table_model_(profile),
table_view_(NULL) {
}