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

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: Add new valgrind sigs 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 8ba85f0df03abd57e7567a8875e8ac4b0e02af8d..a626b4f4c0a537b1a8d69e4d92cc1cc915bd0107 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -755,7 +755,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