/external/chromium/chrome/browser/ui/cocoa/wrench_menu/ |
wrench_menu_controller.mm | 44 WrenchMenuModel* wrenchMenuModel = [controller_ wrenchMenuModel]; 45 wrenchMenuModel->UpdateZoomControls(); 47 wrenchMenuModel->GetLabelForCommandId(IDC_ZOOM_PERCENT_DISPLAY); 116 [self wrenchMenuModel]->GetLabelForCommandId(IDC_ZOOM_PERCENT_DISPLAY)); 120 NSImage* icon = [self wrenchMenuModel]->browser()->window()->IsFullscreen() ? 161 [self wrenchMenuModel]->ExecuteCommand([tag intValue]); 164 - (WrenchMenuModel*)wrenchMenuModel { [all...] |
wrench_menu_controller.h | 17 class WrenchMenuModel; 55 // Returns the weak reference to the WrenchMenuModel. 56 - (WrenchMenuModel*)wrenchMenuModel;
|
wrench_menu_controller_unittest.mm | 20 [self wrenchMenuModel]->ExecuteCommand(tag); 27 class MockWrenchMenuModel : public WrenchMenuModel { 29 MockWrenchMenuModel() : WrenchMenuModel() {} 32 // ~WrenchMenuModel(), there's a call to TabstripModel::RemoveObserver(this)
|
/external/chromium/chrome/browser/ui/toolbar/ |
wrench_menu_model.cc | 199 // WrenchMenuModel 201 WrenchMenuModel::WrenchMenuModel(ui::AcceleratorProvider* provider, 218 WrenchMenuModel::~WrenchMenuModel() { 223 bool WrenchMenuModel::DoesCommandIdDismissMenu(int command_id) const { 227 bool WrenchMenuModel::IsItemForCommandIdDynamic(int command_id) const { 237 string16 WrenchMenuModel::GetLabelForCommandId(int command_id) const { 274 bool WrenchMenuModel::GetIconForCommandId(int command_id, 305 void WrenchMenuModel::ExecuteCommand(int command_id) [all...] |
wrench_menu_model.h | 73 class WrenchMenuModel : public ui::SimpleMenuModel, 79 WrenchMenuModel(ui::AcceleratorProvider* provider, Browser* browser); 80 virtual ~WrenchMenuModel(); 123 WrenchMenuModel(); 151 DISALLOW_COPY_AND_ASSIGN(WrenchMenuModel);
|
wrench_menu_model_unittest.cc | 25 // WrenchMenuModel since WrenchMenuModel is now a SimpleMenuModel::Delegate and 27 class TestWrenchMenuModel : public WrenchMenuModel { 31 : WrenchMenuModel(provider, browser), 39 bool val = WrenchMenuModel::IsCommandIdChecked(command_id);
|
/external/chromium_org/chrome/browser/ui/cocoa/wrench_menu/ |
wrench_menu_controller.h | 19 class WrenchMenuModel; 41 scoped_ptr<WrenchMenuModel> wrenchMenuModel_; 70 // Returns the weak reference to the WrenchMenuModel. 71 - (WrenchMenuModel*)wrenchMenuModel;
|
wrench_menu_controller.mm | 80 WrenchMenuModel* wrenchMenuModel = [controller_ wrenchMenuModel]; 81 wrenchMenuModel->UpdateZoomControls(); 83 wrenchMenuModel->GetLabelForCommandId(IDC_ZOOM_PERCENT_DISPLAY); 196 new BookmarkMenuBridge([self wrenchMenuModel]->browser()->profile(), 204 [self wrenchMenuModel]->GetLabelForCommandId(IDC_ZOOM_PERCENT_DISPLAY)); 209 NSImage* icon = [self wrenchMenuModel]->browser()->window()->IsFullscreen() ? 266 [self wrenchMenuModel]->ExecuteCommand([tag intValue], 0); 269 - (WrenchMenuModel*)wrenchMenuModel [all...] |
wrench_menu_controller_unittest.mm | 30 class MockWrenchMenuModel : public WrenchMenuModel { 32 MockWrenchMenuModel() : WrenchMenuModel() {} 35 // ~WrenchMenuModel(), there's a call to TabstripModel::RemoveObserver(this)
|
/external/chromium_org/chrome/browser/ui/toolbar/ |
wrench_menu_model.cc | 243 // WrenchMenuModel 245 WrenchMenuModel::WrenchMenuModel(ui::AcceleratorProvider* provider, 257 base::Bind(&WrenchMenuModel::OnZoomLevelChanged, 266 WrenchMenuModel::~WrenchMenuModel() { 271 bool WrenchMenuModel::DoesCommandIdDismissMenu(int command_id) const { 275 bool WrenchMenuModel::IsItemForCommandIdDynamic(int command_id) const { 286 base::string16 WrenchMenuModel::GetLabelForCommandId(int command_id) const { 322 bool WrenchMenuModel::GetIconForCommandId(int command_id [all...] |
wrench_menu_model_unittest.cc | 86 // WrenchMenuModel since WrenchMenuModel is now a SimpleMenuModel::Delegate and 88 class TestWrenchMenuModel : public WrenchMenuModel { 92 : WrenchMenuModel(provider, browser, false), 100 bool val = WrenchMenuModel::IsCommandIdChecked(command_id); 179 WrenchMenuModel model(this, browser(), false);
|
wrench_menu_model.h | 76 class WrenchMenuModel : public ui::SimpleMenuModel, 93 WrenchMenuModel(ui::AcceleratorProvider* provider, 96 virtual ~WrenchMenuModel(); 143 WrenchMenuModel(); 189 DISALLOW_COPY_AND_ASSIGN(WrenchMenuModel);
|
recent_tabs_sub_menu_model.cc | 61 // |WrenchMenuModel::kMinRecentTabsCommandId| i.e. 1001 and 1200 62 // (|WrenchMenuModel::kMaxRecentTabsCommandId|) inclusively. 63 const int kFirstLocalTabCommandId = WrenchMenuModel::kMinRecentTabsCommandId;
|
/external/chromium/chrome/browser/ui/views/ |
wrench_menu.h | 25 // WrenchMenu adapts the WrenchMenuModel to view's menu related classes.
|
toolbar_view.cc | 132 wrench_menu_model_.reset(new WrenchMenuModel(this, browser_));
|
/external/chromium/chrome/browser/ui/cocoa/toolbar/ |
toolbar_controller.h | 39 class WrenchMenuModel; 79 scoped_ptr<WrenchMenuModel> wrenchMenuModel_;
|
toolbar_controller.mm | 532 wrenchMenuModel_.reset(new WrenchMenuModel(
|
/external/chromium_org/chrome/browser/ui/views/toolbar/ |
toolbar_view.h | 31 class WrenchMenuModel; 236 scoped_ptr<WrenchMenuModel> wrench_menu_model_;
|
wrench_menu.cc | 87 return command_id >= WrenchMenuModel::kMinBookmarkCommandId && 88 command_id <= WrenchMenuModel::kMaxBookmarkCommandId; 93 return command_id >= WrenchMenuModel::kMinRecentTabsCommandId && 94 command_id <= WrenchMenuModel::kMaxRecentTabsCommandId; [all...] |
wrench_menu.h | 35 // WrenchMenu adapts the WrenchMenuModel to view's menu related classes.
|
toolbar_view.cc | 369 wrench_menu_model_.reset(new WrenchMenuModel(this, browser_, use_new_menu));
|
/external/chromium/chrome/browser/ui/gtk/ |
browser_toolbar_gtk.h | 193 WrenchMenuModel wrench_menu_model_;
|
/external/chromium_org/chrome/browser/signin/ |
signin_global_error_unittest.cc | 169 // there's code in WrenchMenuModel to re-use the "sign in to chrome"
|
/external/chromium_org/chrome/browser/ui/gtk/ |
browser_toolbar_gtk.h | 197 scoped_ptr<WrenchMenuModel> wrench_menu_model_;
|
browser_toolbar_gtk.cc | 104 wrench_menu_model_.reset(new WrenchMenuModel(this, browser_, false)); 446 // the WrenchMenuModel before updating the WrenchMenu. 669 wrench_menu_model_.reset(new WrenchMenuModel(this, browser_, false));
|