| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 // Executes |command| registered by |extension|. | 166 // Executes |command| registered by |extension|. |
| 167 void ExecuteExtensionCommand(const extensions::Extension* extension, | 167 void ExecuteExtensionCommand(const extensions::Extension* extension, |
| 168 const extensions::Command& command); | 168 const extensions::Command& command); |
| 169 | 169 |
| 170 // Add or remove an observer. | 170 // Add or remove an observer. |
| 171 void AddObserver(BrowserActionsContainerObserver* observer); | 171 void AddObserver(BrowserActionsContainerObserver* observer); |
| 172 void RemoveObserver(BrowserActionsContainerObserver* observer); | 172 void RemoveObserver(BrowserActionsContainerObserver* observer); |
| 173 | 173 |
| 174 // Overridden from views::View: | 174 // Overridden from views::View: |
| 175 virtual gfx::Size GetPreferredSize() OVERRIDE; | 175 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
| 176 virtual void Layout() OVERRIDE; | 176 virtual void Layout() OVERRIDE; |
| 177 virtual bool GetDropFormats(int* formats, | 177 virtual bool GetDropFormats(int* formats, |
| 178 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; | 178 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; |
| 179 virtual bool AreDropTypesRequired() OVERRIDE; | 179 virtual bool AreDropTypesRequired() OVERRIDE; |
| 180 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; | 180 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; |
| 181 virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE; | 181 virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE; |
| 182 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; | 182 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; |
| 183 virtual void OnDragExited() OVERRIDE; | 183 virtual void OnDragExited() OVERRIDE; |
| 184 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; | 184 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; |
| 185 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; | 185 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 | 402 |
| 403 // Handles delayed showing of the overflow menu when hovering. | 403 // Handles delayed showing of the overflow menu when hovering. |
| 404 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; | 404 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; |
| 405 | 405 |
| 406 ObserverList<BrowserActionsContainerObserver> observers_; | 406 ObserverList<BrowserActionsContainerObserver> observers_; |
| 407 | 407 |
| 408 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); | 408 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); |
| 409 }; | 409 }; |
| 410 | 410 |
| 411 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ | 411 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ |
| OLD | NEW |