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_DEPENDENCY_MANAGER_H_ | 5 #ifndef COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_DEPENDENCY_MANAGER_H_ |
6 #define COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_DEPENDENCY_MANAGER_H_ | 6 #define COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_DEPENDENCY_MANAGER_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "base/callback_list.h" | 9 #include "base/callback_list.h" |
| 10 #include "base/memory/scoped_ptr.h" |
10 #include "components/keyed_service/core/dependency_manager.h" | 11 #include "components/keyed_service/core/dependency_manager.h" |
11 #include "components/keyed_service/core/keyed_service_export.h" | 12 #include "components/keyed_service/core/keyed_service_export.h" |
12 | 13 |
13 class BrowserContextKeyedBaseFactory; | 14 class BrowserContextKeyedBaseFactory; |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 template <typename T> | 17 template <typename T> |
17 struct DefaultSingletonTraits; | 18 struct DefaultSingletonTraits; |
18 } // namespace base | 19 } // namespace base |
19 | 20 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 void DumpContextDependencies(base::SupportsUserData* context) const final; | 98 void DumpContextDependencies(base::SupportsUserData* context) const final; |
98 #endif // NDEBUG | 99 #endif // NDEBUG |
99 | 100 |
100 // A list of callbacks to call just before executing | 101 // A list of callbacks to call just before executing |
101 // CreateBrowserContextServices() or CreateBrowserContextServicesForTest(). | 102 // CreateBrowserContextServices() or CreateBrowserContextServicesForTest(). |
102 base::CallbackList<void(content::BrowserContext*)> | 103 base::CallbackList<void(content::BrowserContext*)> |
103 will_create_browser_context_services_callbacks_; | 104 will_create_browser_context_services_callbacks_; |
104 }; | 105 }; |
105 | 106 |
106 #endif // COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_DEPENDENCY_MANAGER_H
_ | 107 #endif // COMPONENTS_KEYED_SERVICE_CONTENT_BROWSER_CONTEXT_DEPENDENCY_MANAGER_H
_ |
OLD | NEW |