OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TOOLBAR_TOOLBAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 // Executes |command| registered by |extension|. | 93 // Executes |command| registered by |extension|. |
94 void ExecuteExtensionCommand(const extensions::Extension* extension, | 94 void ExecuteExtensionCommand(const extensions::Extension* extension, |
95 const extensions::Command& command); | 95 const extensions::Command& command); |
96 | 96 |
97 // Shows the extension's page action, if present. | 97 // Shows the extension's page action, if present. |
98 void ShowPageActionPopup(const extensions::Extension* extension); | 98 void ShowPageActionPopup(const extensions::Extension* extension); |
99 | 99 |
100 // Shows the extension's browser action, if present. | 100 // Shows the extension's browser action, if present. |
101 void ShowBrowserActionPopup(const extensions::Extension* extension); | 101 void ShowBrowserActionPopup(const extensions::Extension* extension); |
102 | 102 |
| 103 // Shows the app (wrench) menu. |for_drop| indicates whether the menu is |
| 104 // opened for a drag-and-drop operation. |
| 105 void ShowAppMenu(bool for_drop); |
| 106 |
103 // Accessors. | 107 // Accessors. |
104 Browser* browser() const { return browser_; } | 108 Browser* browser() const { return browser_; } |
105 BrowserActionsContainer* browser_actions() const { return browser_actions_; } | 109 BrowserActionsContainer* browser_actions() const { return browser_actions_; } |
106 ReloadButton* reload_button() const { return reload_; } | 110 ReloadButton* reload_button() const { return reload_; } |
107 LocationBarView* location_bar() const { return location_bar_; } | 111 LocationBarView* location_bar() const { return location_bar_; } |
108 views::MenuButton* app_menu() const; | 112 views::MenuButton* app_menu() const; |
109 HomeButton* home_button() const { return home_; } | 113 HomeButton* home_button() const { return home_; } |
110 | 114 |
111 // AccessiblePaneView: | 115 // AccessiblePaneView: |
112 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; | 116 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 258 |
255 // A list of listeners to call when the menu opens. | 259 // A list of listeners to call when the menu opens. |
256 ObserverList<views::MenuListener> menu_listeners_; | 260 ObserverList<views::MenuListener> menu_listeners_; |
257 | 261 |
258 content::NotificationRegistrar registrar_; | 262 content::NotificationRegistrar registrar_; |
259 | 263 |
260 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); | 264 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); |
261 }; | 265 }; |
262 | 266 |
263 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ | 267 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
OLD | NEW |