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

Side by Side Diff: chrome/test/base/testing_profile.h

Issue 2898443002: Implement GetBrowsingDataRemoverDelegate() for BrowserContext subclasses (Closed)
Patch Set: More fixes. Created 3 years, 7 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
« no previous file with comments | « chrome/browser/ui/app_list/test/fake_profile.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_H_ 5 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_H_
6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_ 6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; 238 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override;
239 bool IsOffTheRecord() const override; 239 bool IsOffTheRecord() const override;
240 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 240 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
241 content::ResourceContext* GetResourceContext() override; 241 content::ResourceContext* GetResourceContext() override;
242 content::BrowserPluginGuestManager* GetGuestManager() override; 242 content::BrowserPluginGuestManager* GetGuestManager() override;
243 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 243 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
244 content::PushMessagingService* GetPushMessagingService() override; 244 content::PushMessagingService* GetPushMessagingService() override;
245 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; 245 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
246 content::PermissionManager* GetPermissionManager() override; 246 content::PermissionManager* GetPermissionManager() override;
247 content::BackgroundSyncController* GetBackgroundSyncController() override; 247 content::BackgroundSyncController* GetBackgroundSyncController() override;
248 content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
249 override;
248 net::URLRequestContextGetter* CreateRequestContext( 250 net::URLRequestContextGetter* CreateRequestContext(
249 content::ProtocolHandlerMap* protocol_handlers, 251 content::ProtocolHandlerMap* protocol_handlers,
250 content::URLRequestInterceptorScopedVector request_interceptors) override; 252 content::URLRequestInterceptorScopedVector request_interceptors) override;
251 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 253 net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
252 const base::FilePath& partition_path, 254 const base::FilePath& partition_path,
253 bool in_memory, 255 bool in_memory,
254 content::ProtocolHandlerMap* protocol_handlers, 256 content::ProtocolHandlerMap* protocol_handlers,
255 content::URLRequestInterceptorScopedVector request_interceptors) override; 257 content::URLRequestInterceptorScopedVector request_interceptors) override;
256 net::URLRequestContextGetter* CreateMediaRequestContext() override; 258 net::URLRequestContextGetter* CreateMediaRequestContext() override;
257 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( 259 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition(
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 429
428 // Weak pointer to a delegate for indicating that a profile was created. 430 // Weak pointer to a delegate for indicating that a profile was created.
429 Delegate* delegate_; 431 Delegate* delegate_;
430 432
431 std::string profile_name_; 433 std::string profile_name_;
432 434
433 std::unique_ptr<policy::PolicyService> policy_service_; 435 std::unique_ptr<policy::PolicyService> policy_service_;
434 }; 436 };
435 437
436 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ 438 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/test/fake_profile.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698