OLD | NEW |
---|---|
(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 COMPONENTS_WIFI_SYNC_WIFI_CREDENTIAL_SYNCABLE_SERVICE_FACTORY_H_ | |
6 #define COMPONENTS_WIFI_SYNC_WIFI_CREDENTIAL_SYNCABLE_SERVICE_FACTORY_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/memory/singleton.h" | |
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" | |
11 | |
12 namespace wifi_sync { | |
13 | |
14 class WifiCredentialSyncableService; | |
15 | |
16 // Singleton that owns all WifiCredentialSyncableServices and | |
17 // associates them with Profiles. Listens for the Profile's | |
18 // destruction notification and cleans up the associated | |
19 // WifiCredentialSyncableServices. | |
20 class WifiCredentialSyncableServiceFactory | |
21 : public BrowserContextKeyedServiceFactory { | |
22 public: | |
23 // Returns the SyncableService for |browser_context|, creating the | |
24 // SyncableService if one does not already exist. | |
25 static WifiCredentialSyncableService* GetForBrowserContext( | |
26 content::BrowserContext* browser_context); | |
erikwright (departed)
2014/12/08 21:21:36
forward-decl BrowserContext.
mukesh agrawal
2014/12/09 01:23:50
content::BrowserContext must have been declared, b
erikwright (departed)
2014/12/09 12:42:03
You are correct that the principle is that the inc
| |
27 | |
28 // Returns the singleton instance. As this class has no public | |
29 // instance methods, this function is not generally useful for | |
30 // external callers. This function is public only so that the | |
31 // Singleton template can reference it. | |
32 static WifiCredentialSyncableServiceFactory* GetInstance(); | |
33 | |
34 private: | |
35 friend struct DefaultSingletonTraits<WifiCredentialSyncableServiceFactory>; | |
36 | |
37 WifiCredentialSyncableServiceFactory(); | |
38 ~WifiCredentialSyncableServiceFactory() override; | |
39 | |
40 // Implementation of BrowserContextKeyedServiceFactory. | |
41 KeyedService* BuildServiceInstanceFor( | |
42 content::BrowserContext* context) const override; | |
43 | |
44 DISALLOW_COPY_AND_ASSIGN(WifiCredentialSyncableServiceFactory); | |
45 }; | |
46 | |
47 } // namespace wifi_sync | |
48 | |
49 #endif // COMPONENTS_WIFI_SYNC_WIFI_CREDENTIAL_SYNCABLE_SERVICE_FACTORY_H_ | |
OLD | NEW |