diff options
Diffstat (limited to 'chrome/browser/views/options/exceptions_page_view.cc')
-rw-r--r-- | chrome/browser/views/options/exceptions_page_view.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/browser/views/options/exceptions_page_view.cc b/chrome/browser/views/options/exceptions_page_view.cc index ecc9884..daff30e 100644 --- a/chrome/browser/views/options/exceptions_page_view.cc +++ b/chrome/browser/views/options/exceptions_page_view.cc @@ -77,12 +77,10 @@ void ExceptionsTableModel::OnWebDataServiceRequestDone( // ExceptionsPageView, public ExceptionsPageView::ExceptionsPageView(Profile* profile) : OptionsPageView(profile), - 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))), + 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)), table_model_(profile), table_view_(NULL) { } |