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_EXTENSIONS_EXTENSION_MANAGEMENT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 friend struct DefaultSingletonTraits<ExtensionManagementFactory>; | 186 friend struct DefaultSingletonTraits<ExtensionManagementFactory>; |
187 | 187 |
188 ExtensionManagementFactory(); | 188 ExtensionManagementFactory(); |
189 virtual ~ExtensionManagementFactory(); | 189 virtual ~ExtensionManagementFactory(); |
190 | 190 |
191 // BrowserContextKeyedServiceExtensionManagementFactory: | 191 // BrowserContextKeyedServiceExtensionManagementFactory: |
192 virtual KeyedService* BuildServiceInstanceFor( | 192 virtual KeyedService* BuildServiceInstanceFor( |
193 content::BrowserContext* context) const OVERRIDE; | 193 content::BrowserContext* context) const OVERRIDE; |
194 virtual content::BrowserContext* GetBrowserContextToUse( | 194 virtual content::BrowserContext* GetBrowserContextToUse( |
195 content::BrowserContext* context) const OVERRIDE; | 195 content::BrowserContext* context) const OVERRIDE; |
| 196 virtual void RegisterProfilePrefs( |
| 197 user_prefs::PrefRegistrySyncable* registry) OVERRIDE; |
196 | 198 |
197 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory); | 199 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory); |
198 }; | 200 }; |
199 | 201 |
200 } // namespace extensions | 202 } // namespace extensions |
201 | 203 |
202 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ | 204 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ |
OLD | NEW |