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

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

Issue 238863005: Domain Reliability: Remove browsing data when requested. (Closed) Base URL: http://git.chromium.org/chromium/src.git@domrel_bakedin
Patch Set: rebase Created 6 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 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 85a7bf77128457812636de3dfa376891b4918ed1..4dd40f49caed24208e1bcd3abf2de43f4e995a3b 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -879,6 +879,14 @@ void TestingProfile::ClearNetworkingHistorySince(
}
}
+void TestingProfile::ClearDomainReliabilityMonitor(
+ bool clear_contexts,
+ const base::Closure& completion) {
+ if (!completion.is_null()) {
+ BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, completion);
+ }
+}
+
GURL TestingProfile::GetHomePage() {
return GURL(chrome::kChromeUINewTabURL);
}

Powered by Google App Engine
This is Rietveld 408576698