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

Side by Side Diff: chrome/browser/extensions/api/system_indicator/system_indicator_manager_factory.h

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_ FACTORY_H__ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_ FACTORY_H__
6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_ FACTORY_H__ 6 #define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAGER_ FACTORY_H__
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
10 10
11 class Profile; 11 class Profile;
12 12
13 namespace extensions { 13 namespace extensions {
14 class SystemIndicatorManager; 14 class SystemIndicatorManager;
15 15
16 // BrowserContextKeyedServiceFactory for each SystemIndicatorManager. 16 // BrowserContextKeyedServiceFactory for each SystemIndicatorManager.
17 class SystemIndicatorManagerFactory : public BrowserContextKeyedServiceFactory { 17 class SystemIndicatorManagerFactory : public BrowserContextKeyedServiceFactory {
18 public: 18 public:
19 static SystemIndicatorManager* GetForProfile(Profile* profile); 19 static SystemIndicatorManager* GetForProfile(Profile* profile);
20 20
21 static SystemIndicatorManagerFactory* GetInstance(); 21 static SystemIndicatorManagerFactory* GetInstance();
22 22
23 private: 23 private:
24 friend struct DefaultSingletonTraits<SystemIndicatorManagerFactory>; 24 friend struct base::DefaultSingletonTraits<SystemIndicatorManagerFactory>;
25 25
26 SystemIndicatorManagerFactory(); 26 SystemIndicatorManagerFactory();
27 ~SystemIndicatorManagerFactory() override; 27 ~SystemIndicatorManagerFactory() override;
28 28
29 // BrowserContextKeyedBaseFactory implementation. 29 // BrowserContextKeyedBaseFactory implementation.
30 KeyedService* BuildServiceInstanceFor( 30 KeyedService* BuildServiceInstanceFor(
31 content::BrowserContext* profile) const override; 31 content::BrowserContext* profile) const override;
32 }; 32 };
33 33
34 } // namespace extensions 34 } // namespace extensions
35 35
36 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAG ER_FACTORY_H__ 36 #endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INDICATOR_SYSTEM_INDICATOR_MANAG ER_FACTORY_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698