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

Unified Diff: chrome/test/base/testing_profile.cc

Issue 8135017: Refactor downloads into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed indentation of calls to DownloadServiceFactory. Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/base/testing_profile.cc
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
index 4d652475c8b90e1d21c17b701d483fcbd9357098..40d209c196eacf1bf1cbf7d63fa15b03708f1123 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -565,10 +565,6 @@ quota::QuotaManager* TestingProfile::GetQuotaManager() {
return quota_manager_.get();
}
-bool TestingProfile::HasCreatedDownloadManager() const {
- return false;
-}
-
net::URLRequestContextGetter* TestingProfile::GetRequestContext() {
return request_context_.get();
}
@@ -777,13 +773,6 @@ ChromeURLDataManager* TestingProfile::GetChromeURLDataManager() {
return chrome_url_data_manager_.get();
}
-void TestingProfile::SetDownloadManagerDelegate(
- ChromeDownloadManagerDelegate* delegate) {
- // Specially marked so errors from use will occur near to the site
- // of the error.
- NOTIMPLEMENTED();
-}
-
chrome_browser_net::Predictor* TestingProfile::GetNetworkPredictor() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698