OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |
6 #define CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 | 10 |
| 11 class Browser; |
11 class Profile; | 12 class Profile; |
12 class ToolbarActionViewController; | 13 class ToolbarActionViewController; |
13 | 14 |
14 // The registry for all component toolbar actions. Component toolbar actions | 15 // The registry for all component toolbar actions. Component toolbar actions |
15 // are actions that live in the toolbar (like extension actions), but are | 16 // are actions that live in the toolbar (like extension actions), but are |
16 // components of chrome, such as ChromeCast. | 17 // components of chrome, such as ChromeCast. |
17 class ComponentToolbarActionsFactory { | 18 class ComponentToolbarActionsFactory { |
18 public: | 19 public: |
19 ComponentToolbarActionsFactory(); | 20 ComponentToolbarActionsFactory(); |
20 ~ComponentToolbarActionsFactory(); | 21 ~ComponentToolbarActionsFactory(); |
21 | 22 |
22 static ComponentToolbarActionsFactory* GetInstance(); | 23 static ComponentToolbarActionsFactory* GetInstance(); |
23 | 24 |
24 // Returns a collection of controllers for Chrome Actions. Declared virtual | 25 // Returns a collection of controllers for Chrome Actions. Declared virtual |
25 // for testing. | 26 // for testing. |
26 virtual ScopedVector<ToolbarActionViewController> | 27 virtual ScopedVector<ToolbarActionViewController> |
27 GetComponentToolbarActions(); | 28 GetComponentToolbarActions(Browser* browser); |
28 | 29 |
29 // Returns the number of component actions. | 30 // Returns the number of component actions. |
30 int GetNumComponentActions(); | 31 int GetNumComponentActions(Browser* browser); |
31 | 32 |
32 // Sets the factory to use for testing purposes. | 33 // Sets the factory to use for testing purposes. |
33 // Ownership remains with the caller. | 34 // Ownership remains with the caller. |
34 static void SetTestingFactory(ComponentToolbarActionsFactory* factory); | 35 static void SetTestingFactory(ComponentToolbarActionsFactory* factory); |
35 | 36 |
36 private: | 37 private: |
37 // The number of component actions. Initially set to -1 to denote that the | 38 // The number of component actions. Initially set to -1 to denote that the |
38 // count has not been checked yet. | 39 // count has not been checked yet. |
39 int num_component_actions_; | 40 int num_component_actions_; |
40 | 41 |
41 DISALLOW_COPY_AND_ASSIGN(ComponentToolbarActionsFactory); | 42 DISALLOW_COPY_AND_ASSIGN(ComponentToolbarActionsFactory); |
42 }; | 43 }; |
43 | 44 |
44 #endif // CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ | 45 #endif // CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |
OLD | NEW |