OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
Devlin
2014/09/11 18:41:01
nit: These, on the other hand, _shouldn't_ be upda
David Tseng
2014/09/11 19:34:20
Done.
| |
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" |
11 #include "chrome/browser/ui/views/extensions/browser_action_overflow_menu_contro ller.h" | 11 #include "chrome/browser/ui/views/extensions/browser_action_overflow_menu_contro ller.h" |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
417 | 417 |
418 // Handles delayed showing of the overflow menu when hovering. | 418 // Handles delayed showing of the overflow menu when hovering. |
419 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; | 419 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; |
420 | 420 |
421 ObserverList<BrowserActionsContainerObserver> observers_; | 421 ObserverList<BrowserActionsContainerObserver> observers_; |
422 | 422 |
423 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); | 423 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); |
424 }; | 424 }; |
425 | 425 |
426 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ | 426 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_ |
OLD | NEW |