Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: components/keyed_service/content/browser_context_dependency_manager.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 _
OLDNEW
« no previous file with comments | « components/guest_view/renderer/guest_view_request.h ('k') | components/keyed_service/core/keyed_service_shutdown_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698