| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_ACTIONS_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BROWSER_ACTIONS_CONTAINER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BROWSER_ACTIONS_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BROWSER_ACTIONS_CONTAINER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 class Browser; | 32 class Browser; |
| 33 class BrowserActionOverflowMenuController; | 33 class BrowserActionOverflowMenuController; |
| 34 class BrowserActionsContainer; | 34 class BrowserActionsContainer; |
| 35 class Extension; | 35 class Extension; |
| 36 class ExtensionAction; | 36 class ExtensionAction; |
| 37 class ExtensionPopup; | 37 class ExtensionPopup; |
| 38 class PrefService; | 38 class PrefService; |
| 39 class Profile; | 39 class Profile; |
| 40 | 40 |
| 41 namespace gfx { | |
| 42 class CanvasSkia; | |
| 43 } | |
| 44 | |
| 45 namespace ui { | 41 namespace ui { |
| 46 class SlideAnimation; | 42 class SlideAnimation; |
| 47 } | 43 } |
| 48 | 44 |
| 49 namespace views { | 45 namespace views { |
| 50 class MenuItemView; | 46 class MenuItemView; |
| 51 class ResizeArea; | 47 class ResizeArea; |
| 52 } | 48 } |
| 53 | 49 |
| 54 //////////////////////////////////////////////////////////////////////////////// | 50 //////////////////////////////////////////////////////////////////////////////// |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 | 512 |
| 517 base::WeakPtrFactory<BrowserActionsContainer> task_factory_; | 513 base::WeakPtrFactory<BrowserActionsContainer> task_factory_; |
| 518 | 514 |
| 519 // Handles delayed showing of the overflow menu when hovering. | 515 // Handles delayed showing of the overflow menu when hovering. |
| 520 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; | 516 base::WeakPtrFactory<BrowserActionsContainer> show_menu_task_factory_; |
| 521 | 517 |
| 522 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); | 518 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); |
| 523 }; | 519 }; |
| 524 | 520 |
| 525 #endif // CHROME_BROWSER_UI_VIEWS_BROWSER_ACTIONS_CONTAINER_H_ | 521 #endif // CHROME_BROWSER_UI_VIEWS_BROWSER_ACTIONS_CONTAINER_H_ |
| OLD | NEW |