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_BROWSER_ACTIONS_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ |
7 | 7 |
8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
9 #include "chrome/browser/extensions/extension_keybinding_registry.h" | 9 #include "chrome/browser/extensions/extension_keybinding_registry.h" |
10 #include "chrome/browser/extensions/extension_toolbar_model.h" | 10 #include "chrome/browser/extensions/extension_toolbar_model.h" |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 238 |
239 // Overridden from views::WidgetObserver: | 239 // Overridden from views::WidgetObserver: |
240 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; | 240 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; |
241 | 241 |
242 // Overridden from BrowserActionView::Delegate: | 242 // Overridden from BrowserActionView::Delegate: |
243 virtual void InspectPopup(ExtensionAction* action) OVERRIDE; | 243 virtual void InspectPopup(ExtensionAction* action) OVERRIDE; |
244 virtual int GetCurrentTabId() const OVERRIDE; | 244 virtual int GetCurrentTabId() const OVERRIDE; |
245 virtual void OnBrowserActionExecuted(BrowserActionButton* button) OVERRIDE; | 245 virtual void OnBrowserActionExecuted(BrowserActionButton* button) OVERRIDE; |
246 virtual void OnBrowserActionVisibilityChanged() OVERRIDE; | 246 virtual void OnBrowserActionVisibilityChanged() OVERRIDE; |
247 virtual bool ShownInsideMenu() const OVERRIDE; | 247 virtual bool ShownInsideMenu() const OVERRIDE; |
| 248 virtual void OnBrowserActionViewDragDone() OVERRIDE; |
248 | 249 |
249 // Overridden from extension::ExtensionKeybindingRegistry::Delegate: | 250 // Overridden from extension::ExtensionKeybindingRegistry::Delegate: |
250 virtual extensions::ActiveTabPermissionGranter* | 251 virtual extensions::ActiveTabPermissionGranter* |
251 GetActiveTabPermissionGranter() OVERRIDE; | 252 GetActiveTabPermissionGranter() OVERRIDE; |
252 | 253 |
253 // Moves a browser action with |id| to |new_index|. | 254 // Moves a browser action with |id| to |new_index|. |
254 void MoveBrowserAction(const std::string& extension_id, size_t new_index); | 255 void MoveBrowserAction(const std::string& extension_id, size_t new_index); |
255 | 256 |
256 // Shows the popup for |extension| if possible. Returns true if a new popup | 257 // Shows the popup for |extension| if possible. Returns true if a new popup |
257 // was shown. Showing the popup will grant tab permissions if | 258 // was shown. Showing the popup will grant tab permissions if |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 | 441 |
441 // Handles delayed showing of the overflow menu when hovering. | 442 // Handles delayed showing of the overflow menu when hovering. |
442 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; | 443 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; |
443 | 444 |
444 ObserverList<BrowserActionsContainerObserver> observers_; | 445 ObserverList<BrowserActionsContainerObserver> observers_; |
445 | 446 |
446 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); | 447 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); |
447 }; | 448 }; |
448 | 449 |
449 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ | 450 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ |
OLD | NEW |