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

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

Issue 11819008: Refactors building the system menu model into a common place (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk and fix windows build Created 7 years, 11 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 | Annotate | Revision Log
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 "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "ui/base/accelerators/accelerator.h" 10 #include "ui/base/accelerators/accelerator.h"
11 #include "ui/base/models/simple_menu_model.h" 11 #include "ui/base/models/simple_menu_model.h"
12 12
13 // Provides the SimpleMenuModel::Delegate implementation for system context 13 // Provides the SimpleMenuModel::Delegate implementation for system context
14 // menus. 14 // menus.
15 class SystemMenuModelDelegate : public ui::SimpleMenuModel::Delegate { 15 class SystemMenuModelDelegate : public ui::SimpleMenuModel::Delegate {
16 public: 16 public:
17 SystemMenuModelDelegate(ui::AcceleratorProvider* provider, Browser* browser); 17 SystemMenuModelDelegate(ui::AcceleratorProvider* provider, Browser* browser);
18 virtual ~SystemMenuModelDelegate(); 18 virtual ~SystemMenuModelDelegate();
19 19
20 Browser* browser() { return browser_; }
21
20 // Overridden from ui::SimpleMenuModel::Delegate: 22 // Overridden from ui::SimpleMenuModel::Delegate:
21 virtual bool IsCommandIdChecked(int command_id) const OVERRIDE; 23 virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
22 virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE; 24 virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
23 virtual bool GetAcceleratorForCommandId( 25 virtual bool GetAcceleratorForCommandId(
24 int command_id, ui::Accelerator* accelerator) OVERRIDE; 26 int command_id,
27 ui::Accelerator* accelerator) OVERRIDE;
25 virtual bool IsItemForCommandIdDynamic(int command_id) const OVERRIDE; 28 virtual bool IsItemForCommandIdDynamic(int command_id) const OVERRIDE;
26 virtual string16 GetLabelForCommandId(int command_id) const OVERRIDE; 29 virtual string16 GetLabelForCommandId(int command_id) const OVERRIDE;
27 virtual void ExecuteCommand(int command_id) OVERRIDE; 30 virtual void ExecuteCommand(int command_id) OVERRIDE;
28 31
29 private: 32 private:
30 ui::AcceleratorProvider* provider_; // weak 33 ui::AcceleratorProvider* provider_; // weak
31 Browser* browser_; // weak 34 Browser* browser_; // weak
32 35
33 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelDelegate); 36 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelDelegate);
34 }; 37 };
35 38
36 #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/system_menu_model_builder.cc ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698