Chromium Code Reviews| Index: chrome/browser/ui/toolbar/component_toolbar_actions_factory.h |
| diff --git a/chrome/browser/ui/toolbar/component_toolbar_actions_factory.h b/chrome/browser/ui/toolbar/component_toolbar_actions_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0aac73a0438ccd6ede8aa93905f6d6c08a8d236e |
| --- /dev/null |
| +++ b/chrome/browser/ui/toolbar/component_toolbar_actions_factory.h |
| @@ -0,0 +1,36 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |
| +#define CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |
| + |
| +#include "base/macros.h" |
| +#include "base/memory/scoped_vector.h" |
| + |
| +class Profile; |
| +class ToolbarActionViewController; |
| + |
| +// The registry for all component toolbar actions. Component toolbar actions |
| +// are actions that live in the toolbar (like extension actions), but are |
| +// components of chrome, such as ChromeCast. |
| +class ComponentToolbarActionsFactory { |
| + public: |
| + ComponentToolbarActionsFactory(); |
| + ~ComponentToolbarActionsFactory(); |
| + |
| + static ComponentToolbarActionsFactory* GetInstance(); |
| + |
| + // Returns a collection of controllers for Chrome Actions. Declared virtual |
| + // for testing. |
| + virtual ScopedVector<ToolbarActionViewController> |
| + GetComponentToolbarActions(); |
| + |
| + // Sets the factory to use for testing purposes. |
|
sky
2014/10/16 23:03:33
nit: document ownership.
Devlin
2014/10/17 16:33:32
Done.
|
| + static void SetTestingFactory(ComponentToolbarActionsFactory* factory); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ComponentToolbarActionsFactory); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_TOOLBAR_COMPONENT_TOOLBAR_ACTIONS_FACTORY_H_ |