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

Side by Side Diff: chrome/browser/custom_handlers/protocol_handler_registry_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_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_ 5 #ifndef CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_
6 #define CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_ 6 #define CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
11 11
12 class Profile; 12 class Profile;
13 class ProtocolHandlerRegistry; 13 class ProtocolHandlerRegistry;
14
15 namespace base {
14 template <typename T> struct DefaultSingletonTraits; 16 template <typename T> struct DefaultSingletonTraits;
17 }
15 18
16 // Singleton that owns all ProtocolHandlerRegistrys and associates them with 19 // Singleton that owns all ProtocolHandlerRegistrys and associates them with
17 // Profiles. Listens for the Profile's destruction notification and cleans up 20 // Profiles. Listens for the Profile's destruction notification and cleans up
18 // the associated ProtocolHandlerRegistry. 21 // the associated ProtocolHandlerRegistry.
19 class ProtocolHandlerRegistryFactory 22 class ProtocolHandlerRegistryFactory
20 : public BrowserContextKeyedServiceFactory { 23 : public BrowserContextKeyedServiceFactory {
21 public: 24 public:
22 // Returns the singleton instance of the ProtocolHandlerRegistryFactory. 25 // Returns the singleton instance of the ProtocolHandlerRegistryFactory.
23 static ProtocolHandlerRegistryFactory* GetInstance(); 26 static ProtocolHandlerRegistryFactory* GetInstance();
24 27
25 // Returns the ProtocolHandlerRegistry that provides intent registration for 28 // Returns the ProtocolHandlerRegistry that provides intent registration for
26 // |context|. Ownership stays with this factory object. 29 // |context|. Ownership stays with this factory object.
27 static ProtocolHandlerRegistry* GetForBrowserContext( 30 static ProtocolHandlerRegistry* GetForBrowserContext(
28 content::BrowserContext* context); 31 content::BrowserContext* context);
29 32
30 protected: 33 protected:
31 // BrowserContextKeyedServiceFactory implementation. 34 // BrowserContextKeyedServiceFactory implementation.
32 bool ServiceIsCreatedWithBrowserContext() const override; 35 bool ServiceIsCreatedWithBrowserContext() const override;
33 content::BrowserContext* GetBrowserContextToUse( 36 content::BrowserContext* GetBrowserContextToUse(
34 content::BrowserContext* context) const override; 37 content::BrowserContext* context) const override;
35 bool ServiceIsNULLWhileTesting() const override; 38 bool ServiceIsNULLWhileTesting() const override;
36 39
37 private: 40 private:
38 friend struct DefaultSingletonTraits<ProtocolHandlerRegistryFactory>; 41 friend struct base::DefaultSingletonTraits<ProtocolHandlerRegistryFactory>;
39 42
40 ProtocolHandlerRegistryFactory(); 43 ProtocolHandlerRegistryFactory();
41 ~ProtocolHandlerRegistryFactory() override; 44 ~ProtocolHandlerRegistryFactory() override;
42 45
43 // BrowserContextKeyedServiceFactory implementation. 46 // BrowserContextKeyedServiceFactory implementation.
44 KeyedService* BuildServiceInstanceFor( 47 KeyedService* BuildServiceInstanceFor(
45 content::BrowserContext* profile) const override; 48 content::BrowserContext* profile) const override;
46 49
47 DISALLOW_COPY_AND_ASSIGN(ProtocolHandlerRegistryFactory); 50 DISALLOW_COPY_AND_ASSIGN(ProtocolHandlerRegistryFactory);
48 }; 51 };
49 52
50 #endif // CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_ 53 #endif // CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_REGISTRY_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698