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

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Rebase over codereview.chromium.org/2815913005 Created 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This class gathers state related to a single user profile. 5 // This class gathers state related to a single user profile.
6 6
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 // content::BrowserContext implementation: 76 // content::BrowserContext implementation:
77 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( 77 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
78 const base::FilePath& partition_path) override; 78 const base::FilePath& partition_path) override;
79 base::FilePath GetPath() const override; 79 base::FilePath GetPath() const override;
80 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 80 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
81 content::ResourceContext* GetResourceContext() override; 81 content::ResourceContext* GetResourceContext() override;
82 content::BrowserPluginGuestManager* GetGuestManager() override; 82 content::BrowserPluginGuestManager* GetGuestManager() override;
83 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 83 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
84 content::PushMessagingService* GetPushMessagingService() override; 84 content::PushMessagingService* GetPushMessagingService() override;
85 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; 85 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
86 content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
87 override;
86 content::PermissionManager* GetPermissionManager() override; 88 content::PermissionManager* GetPermissionManager() override;
87 content::BackgroundSyncController* GetBackgroundSyncController() override; 89 content::BackgroundSyncController* GetBackgroundSyncController() override;
88 net::URLRequestContextGetter* CreateRequestContext( 90 net::URLRequestContextGetter* CreateRequestContext(
89 content::ProtocolHandlerMap* protocol_handlers, 91 content::ProtocolHandlerMap* protocol_handlers,
90 content::URLRequestInterceptorScopedVector request_interceptors) override; 92 content::URLRequestInterceptorScopedVector request_interceptors) override;
91 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 93 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
92 const base::FilePath& partition_path, 94 const base::FilePath& partition_path,
93 bool in_memory, 95 bool in_memory,
94 content::ProtocolHandlerMap* protocol_handlers, 96 content::ProtocolHandlerMap* protocol_handlers,
95 content::URLRequestInterceptorScopedVector request_interceptors) override; 97 content::URLRequestInterceptorScopedVector request_interceptors) override;
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 // components/keyed_service/content/browser_context_keyed_service_factory.* 275 // components/keyed_service/content/browser_context_keyed_service_factory.*
274 276
275 Profile::Delegate* delegate_; 277 Profile::Delegate* delegate_;
276 278
277 chrome_browser_net::Predictor* predictor_; 279 chrome_browser_net::Predictor* predictor_;
278 280
279 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 281 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
280 }; 282 };
281 283
282 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 284 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698