| Index: ui/message_center/views/notifier_settings_view.cc
|
| diff --git a/ui/message_center/views/notifier_settings_view.cc b/ui/message_center/views/notifier_settings_view.cc
|
| index 2d6e15d2f171397909c4f3a755e87da0c117bc15..2f5afe278e4bdfe99984f7cd036e192f9c5dbb23 100644
|
| --- a/ui/message_center/views/notifier_settings_view.cc
|
| +++ b/ui/message_center/views/notifier_settings_view.cc
|
| @@ -218,7 +218,7 @@ class NotifierGroupMenuModel : public ui::SimpleMenuModel,
|
| bool IsCommandIdChecked(int command_id) const override;
|
| bool IsCommandIdEnabled(int command_id) const override;
|
| bool GetAcceleratorForCommandId(int command_id,
|
| - ui::Accelerator* accelerator) override;
|
| + ui::Accelerator* accelerator) const override;
|
| void ExecuteCommand(int command_id, int event_flags) override;
|
|
|
| private:
|
| @@ -257,7 +257,7 @@ bool NotifierGroupMenuModel::IsCommandIdEnabled(int command_id) const {
|
|
|
| bool NotifierGroupMenuModel::GetAcceleratorForCommandId(
|
| int command_id,
|
| - ui::Accelerator* accelerator) {
|
| + ui::Accelerator* accelerator) const {
|
| return false;
|
| }
|
|
|
|
|