Home
last modified time | relevance | path

Searched refs:WrenchMenuModel (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/browser/ui/toolbar/
Dwrench_menu_model.cc201 WrenchMenuModel::WrenchMenuModel(ui::AcceleratorProvider* provider, in WrenchMenuModel() function in WrenchMenuModel
218 WrenchMenuModel::~WrenchMenuModel() { in ~WrenchMenuModel()
223 bool WrenchMenuModel::DoesCommandIdDismissMenu(int command_id) const { in DoesCommandIdDismissMenu()
227 bool WrenchMenuModel::IsItemForCommandIdDynamic(int command_id) const { in IsItemForCommandIdDynamic()
237 string16 WrenchMenuModel::GetLabelForCommandId(int command_id) const { in GetLabelForCommandId()
274 bool WrenchMenuModel::GetIconForCommandId(int command_id, in GetIconForCommandId()
305 void WrenchMenuModel::ExecuteCommand(int command_id) { in ExecuteCommand()
309 bool WrenchMenuModel::IsCommandIdChecked(int command_id) const { in IsCommandIdChecked()
319 bool WrenchMenuModel::IsCommandIdEnabled(int command_id) const { in IsCommandIdEnabled()
327 bool WrenchMenuModel::IsCommandIdVisible(int command_id) const { in IsCommandIdVisible()
[all …]
Dwrench_menu_model.h73 class WrenchMenuModel : public ui::SimpleMenuModel,
79 WrenchMenuModel(ui::AcceleratorProvider* provider, Browser* browser);
80 virtual ~WrenchMenuModel();
123 WrenchMenuModel();
151 DISALLOW_COPY_AND_ASSIGN(WrenchMenuModel);
Dwrench_menu_model_unittest.cc27 class TestWrenchMenuModel : public WrenchMenuModel {
31 : WrenchMenuModel(provider, browser), in TestWrenchMenuModel()
39 bool val = WrenchMenuModel::IsCommandIdChecked(command_id); in IsCommandIdChecked()
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/
Dwrench_menu_controller.h17 class WrenchMenuModel; variable
56 - (WrenchMenuModel*)wrenchMenuModel;
Dwrench_menu_controller_unittest.mm27 class MockWrenchMenuModel : public WrenchMenuModel {
29 MockWrenchMenuModel() : WrenchMenuModel() {}
32 // ~WrenchMenuModel(), there's a call to TabstripModel::RemoveObserver(this)
Dwrench_menu_controller.mm44 WrenchMenuModel* wrenchMenuModel = [controller_ wrenchMenuModel];
164 - (WrenchMenuModel*)wrenchMenuModel {
165 return static_cast<WrenchMenuModel*>(model_);
/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_controller.h39 class WrenchMenuModel; variable
79 scoped_ptr<WrenchMenuModel> wrenchMenuModel_;
Dtoolbar_controller.mm532 wrenchMenuModel_.reset(new WrenchMenuModel(
/external/chromium/chrome/browser/ui/gtk/
Dbrowser_toolbar_gtk.h193 WrenchMenuModel wrench_menu_model_;
/external/chromium/chrome/browser/ui/views/
Dtoolbar_view.cc132 wrench_menu_model_.reset(new WrenchMenuModel(this, browser_)); in Init()