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

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

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Addressed comments, fixed Win compilation 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 // content::BrowserContext implementation: 75 // content::BrowserContext implementation:
76 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( 76 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
77 const base::FilePath& partition_path) override; 77 const base::FilePath& partition_path) override;
78 base::FilePath GetPath() const override; 78 base::FilePath GetPath() const override;
79 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 79 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
80 content::ResourceContext* GetResourceContext() override; 80 content::ResourceContext* GetResourceContext() override;
81 content::BrowserPluginGuestManager* GetGuestManager() override; 81 content::BrowserPluginGuestManager* GetGuestManager() override;
82 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 82 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
83 content::PushMessagingService* GetPushMessagingService() override; 83 content::PushMessagingService* GetPushMessagingService() override;
84 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; 84 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
85 content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
86 override;
85 content::PermissionManager* GetPermissionManager() override; 87 content::PermissionManager* GetPermissionManager() override;
86 content::BackgroundSyncController* GetBackgroundSyncController() override; 88 content::BackgroundSyncController* GetBackgroundSyncController() override;
87 net::URLRequestContextGetter* CreateRequestContext( 89 net::URLRequestContextGetter* CreateRequestContext(
88 content::ProtocolHandlerMap* protocol_handlers, 90 content::ProtocolHandlerMap* protocol_handlers,
89 content::URLRequestInterceptorScopedVector request_interceptors) override; 91 content::URLRequestInterceptorScopedVector request_interceptors) override;
90 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 92 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
91 const base::FilePath& partition_path, 93 const base::FilePath& partition_path,
92 bool in_memory, 94 bool in_memory,
93 content::ProtocolHandlerMap* protocol_handlers, 95 content::ProtocolHandlerMap* protocol_handlers,
94 content::URLRequestInterceptorScopedVector request_interceptors) override; 96 content::URLRequestInterceptorScopedVector request_interceptors) override;
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 // components/keyed_service/content/browser_context_keyed_service_factory.* 268 // components/keyed_service/content/browser_context_keyed_service_factory.*
267 269
268 Profile::Delegate* delegate_; 270 Profile::Delegate* delegate_;
269 271
270 chrome_browser_net::Predictor* predictor_; 272 chrome_browser_net::Predictor* predictor_;
271 273
272 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 274 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
273 }; 275 };
274 276
275 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 277 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698