OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_FACTOR
Y_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_FACTORY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_FACTOR
Y_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_FACTORY_H_ |
| 7 |
| 8 #include <string> |
7 | 9 |
8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
9 #include "base/macros.h" | 11 #include "base/macros.h" |
10 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
11 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
12 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 14 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
13 | 15 |
14 class KeyedService; | 16 class KeyedService; |
15 class Profile; | 17 class Profile; |
16 | 18 |
17 namespace ownership { | 19 namespace ownership { |
18 class OwnerKeyUtil; | 20 class OwnerKeyUtil; |
19 } | 21 } |
20 | 22 |
21 namespace chromeos { | 23 namespace chromeos { |
22 | 24 |
23 class OwnerSettingsServiceChromeOS; | 25 class OwnerSettingsService; |
24 | 26 |
25 class OwnerSettingsServiceChromeOSFactory | 27 class OwnerSettingsServiceFactory : public BrowserContextKeyedServiceFactory { |
26 : public BrowserContextKeyedServiceFactory { | |
27 public: | 28 public: |
28 static OwnerSettingsServiceChromeOS* GetForProfile(Profile* profile); | 29 static OwnerSettingsService* GetForProfile(Profile* profile); |
29 | 30 |
30 static OwnerSettingsServiceChromeOSFactory* GetInstance(); | 31 static OwnerSettingsServiceFactory* GetInstance(); |
31 | 32 |
32 scoped_refptr<ownership::OwnerKeyUtil> GetOwnerKeyUtil(); | 33 scoped_refptr<ownership::OwnerKeyUtil> GetOwnerKeyUtil(); |
33 | 34 |
34 void SetOwnerKeyUtilForTesting( | 35 void SetOwnerKeyUtilForTesting( |
35 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util); | 36 const scoped_refptr<ownership::OwnerKeyUtil>& owner_key_util); |
36 | 37 |
37 private: | 38 private: |
38 friend struct DefaultSingletonTraits<OwnerSettingsServiceChromeOSFactory>; | 39 friend struct DefaultSingletonTraits<OwnerSettingsServiceFactory>; |
39 | 40 |
40 OwnerSettingsServiceChromeOSFactory(); | 41 OwnerSettingsServiceFactory(); |
41 virtual ~OwnerSettingsServiceChromeOSFactory(); | 42 virtual ~OwnerSettingsServiceFactory(); |
42 | 43 |
43 static KeyedService* BuildInstanceFor(content::BrowserContext* context); | 44 static KeyedService* BuildInstanceFor(content::BrowserContext* context); |
44 | 45 |
45 // BrowserContextKeyedBaseFactory overrides: | 46 // BrowserContextKeyedBaseFactory overrides: |
46 virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE; | 47 virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE; |
47 | 48 |
48 // BrowserContextKeyedServiceFactory implementation: | 49 // BrowserContextKeyedServiceFactory implementation: |
49 virtual KeyedService* BuildServiceInstanceFor( | 50 virtual KeyedService* BuildServiceInstanceFor( |
50 content::BrowserContext* browser_context) const OVERRIDE; | 51 content::BrowserContext* browser_context) const OVERRIDE; |
51 | 52 |
52 scoped_refptr<ownership::OwnerKeyUtil> owner_key_util_; | 53 scoped_refptr<ownership::OwnerKeyUtil> owner_key_util_; |
53 | 54 |
54 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsServiceChromeOSFactory); | 55 DISALLOW_COPY_AND_ASSIGN(OwnerSettingsServiceFactory); |
55 }; | 56 }; |
56 | 57 |
57 } // namespace chromeos | 58 } // namespace chromeos |
58 | 59 |
59 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_CHROMEOS_FAC
TORY_H_ | 60 #endif // CHROME_BROWSER_CHROMEOS_OWNERSHIP_OWNER_SETTINGS_SERVICE_FACTORY_H_ |
OLD | NEW |