diff options
Diffstat (limited to 'chrome/browser/notifications/notification_options_menu_model.cc')
-rw-r--r-- | chrome/browser/notifications/notification_options_menu_model.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/notifications/notification_options_menu_model.cc b/chrome/browser/notifications/notification_options_menu_model.cc index bd5651f..b5d79fb 100644 --- a/chrome/browser/notifications/notification_options_menu_model.cc +++ b/chrome/browser/notifications/notification_options_menu_model.cc @@ -46,7 +46,7 @@ const int kCornerLowerRight = 14; const int kCornerDefault = 20; CornerSelectionMenuModel::CornerSelectionMenuModel(Balloon* balloon) - : ALLOW_THIS_IN_INITIALIZER_LIST(ui::SimpleMenuModel(this)), + : ui::SimpleMenuModel(this), balloon_(balloon) { AddRadioItem(kCornerDefault, l10n_util::GetStringUTF16(IDS_NOTIFICATION_POSITION_DEFAULT), @@ -131,7 +131,7 @@ void CornerSelectionMenuModel::ExecuteCommand(int command_id, int event_flags) { } NotificationOptionsMenuModel::NotificationOptionsMenuModel(Balloon* balloon) - : ALLOW_THIS_IN_INITIALIZER_LIST(ui::SimpleMenuModel(this)), + : ui::SimpleMenuModel(this), balloon_(balloon) { const Notification& notification = balloon->notification(); const GURL& origin = notification.origin_url(); |