| 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 COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_H
_ | 5 #ifndef COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_H
_ |
| 6 #define COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_H
_ | 6 #define COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_H
_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "components/keyed_service/core/keyed_service_export.h" | 10 #include "components/keyed_service/core/keyed_service_export.h" |
| 11 #include "components/keyed_service/core/keyed_service_factory.h" | 11 #include "components/keyed_service/core/keyed_service_factory.h" |
| 12 | 12 |
| 13 class BrowserContextDependencyManager; | 13 class BrowserContextDependencyManager; |
| 14 class KeyedService; | 14 class KeyedService; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 class BrowserContext; | 17 class BrowserContext; |
| 18 } | 18 } |
| 19 | 19 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 base::SupportsUserData* context) const final; | 139 base::SupportsUserData* context) const final; |
| 140 bool ServiceIsCreatedWithContext() const final; | 140 bool ServiceIsCreatedWithContext() const final; |
| 141 void ContextShutdown(base::SupportsUserData* context) final; | 141 void ContextShutdown(base::SupportsUserData* context) final; |
| 142 void ContextDestroyed(base::SupportsUserData* context) final; | 142 void ContextDestroyed(base::SupportsUserData* context) final; |
| 143 void RegisterPrefs(user_prefs::PrefRegistrySyncable* registry) final; | 143 void RegisterPrefs(user_prefs::PrefRegistrySyncable* registry) final; |
| 144 | 144 |
| 145 DISALLOW_COPY_AND_ASSIGN(BrowserContextKeyedServiceFactory); | 145 DISALLOW_COPY_AND_ASSIGN(BrowserContextKeyedServiceFactory); |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 #endif // COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTOR
Y_H_ | 148 #endif // COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_KEYED_SERVICE_FACTOR
Y_H_ |
| OLD | NEW |