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

Unified Diff: chrome/test/testing_profile.cc

Issue 7282054: Remove more unnecessary ChromeURLRequestContext members. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge again Created 9 years, 5 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/testing_profile.cc
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
index ec65b2bbc60764497921b1ffd9e06a6525d0f9fc..d355ba6cba925ce4c5329c968403e7272204b2a0 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -759,7 +759,9 @@ PromoCounter* TestingProfile::GetInstantPromoCounter() {
ChromeURLDataManager* TestingProfile::GetChromeURLDataManager() {
if (!chrome_url_data_manager_.get())
- chrome_url_data_manager_.reset(new ChromeURLDataManager(this));
+ chrome_url_data_manager_.reset(
+ new ChromeURLDataManager(
+ base::Callback<ChromeURLDataManagerBackend*(void)>()));
return chrome_url_data_manager_.get();
}

Powered by Google App Engine
This is Rietveld 408576698