Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: chrome/browser/ui/toolbar/component_toolbar_actions_factory.h

Issue 661493004: Add infrastructure for Chrome Actions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_
6 #define CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_
7
8 #include "base/macros.h"
9 #include "base/memory/scoped_vector.h"
10
11 class Profile;
12 class ToolbarActionViewController;
13
14 // The registry for all component toolbar actions. Component toolbar actions
15 // are actions that live in the toolbar (like extension actions), but are
16 // components of chrome, such as ChromeCast.
17 class ComponentToolbarActionsFactory {
18 public:
19 ComponentToolbarActionsFactory();
20 ~ComponentToolbarActionsFactory();
21
22 static ComponentToolbarActionsFactory* GetInstance();
23
24 // Returns a collection of controllers for Chrome Actions. Declared virtual
25 // for testing.
26 virtual ScopedVector<ToolbarActionViewController>
27 GetComponentToolbarActions();
28
29 // Sets the factory to use for testing purposes.
30 // Ownership remains with the caller.
31 static void SetTestingFactory(ComponentToolbarActionsFactory* factory);
32
33 private:
34 DISALLOW_COPY_AND_ASSIGN(ComponentToolbarActionsFactory);
35 };
36
37 #endif // CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698