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

Side by Side Diff: chrome/browser/ui/views/frame/system_menu_model_delegate.h

Issue 2133013002: AcceleratorProvider: Make GetAcceleratorForCommandId const. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix overrides on Mac and Chrome OS. Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
11 #include "ui/base/accelerators/accelerator.h" 11 #include "ui/base/accelerators/accelerator.h"
12 #include "ui/base/models/simple_menu_model.h" 12 #include "ui/base/models/simple_menu_model.h"
13 13
14 // Provides the SimpleMenuModel::Delegate implementation for system context 14 // Provides the SimpleMenuModel::Delegate implementation for system context
15 // menus. 15 // menus.
16 class SystemMenuModelDelegate : public ui::SimpleMenuModel::Delegate { 16 class SystemMenuModelDelegate : public ui::SimpleMenuModel::Delegate {
17 public: 17 public:
18 SystemMenuModelDelegate(ui::AcceleratorProvider* provider, Browser* browser); 18 SystemMenuModelDelegate(ui::AcceleratorProvider* provider, Browser* browser);
19 ~SystemMenuModelDelegate() override; 19 ~SystemMenuModelDelegate() override;
20 20
21 Browser* browser() { return browser_; } 21 Browser* browser() { return browser_; }
22 22
23 // Overridden from ui::SimpleMenuModel::Delegate: 23 // Overridden from ui::SimpleMenuModel::Delegate:
24 bool IsCommandIdChecked(int command_id) const override; 24 bool IsCommandIdChecked(int command_id) const override;
25 bool IsCommandIdEnabled(int command_id) const override; 25 bool IsCommandIdEnabled(int command_id) const override;
26 bool GetAcceleratorForCommandId(int command_id, 26 bool GetAcceleratorForCommandId(int command_id,
27 ui::Accelerator* accelerator) override; 27 ui::Accelerator* accelerator) const override;
28 bool IsItemForCommandIdDynamic(int command_id) const override; 28 bool IsItemForCommandIdDynamic(int command_id) const override;
29 base::string16 GetLabelForCommandId(int command_id) const override; 29 base::string16 GetLabelForCommandId(int command_id) const override;
30 void ExecuteCommand(int command_id, int event_flags) override; 30 void ExecuteCommand(int command_id, int event_flags) override;
31 31
32 private: 32 private:
33 ui::AcceleratorProvider* provider_; // weak 33 ui::AcceleratorProvider* provider_; // weak
34 Browser* browser_; // weak 34 Browser* browser_; // weak
35 35
36 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelDelegate); 36 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelDelegate);
37 }; 37 };
38 38
39 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_ 39 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/browser/ui/views/frame/system_menu_model_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698