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

Unified Diff: chrome/browser/profiles/profile_impl.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/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index 4f434b906a4bfe1d348283f808c7ef81dfb21374..e3343ab1b6256ee0ab6a5a24406ef9373442af1a 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -1207,11 +1207,18 @@ chrome_browser_net::Predictor* ProfileImpl::GetNetworkPredictor() {
return predictor_;
}
-void ProfileImpl::ClearNetworkingHistorySince(base::Time time,
- const base::Closure& completion) {
+void ProfileImpl::ClearNetworkingHistorySince(
+ base::Time time,
+ const base::Closure& completion) {
io_data_.ClearNetworkingHistorySince(time, completion);
}
+void ProfileImpl::ClearDomainReliabilityMonitor(
+ bool clear_contexts,
+ const base::Closure& completion) {
+ io_data_.ClearDomainReliabilityMonitor(clear_contexts, completion);
+}
+
GURL ProfileImpl::GetHomePage() {
// --homepage overrides any preferences.
const CommandLine& command_line = *CommandLine::ForCurrentProcess();

Powered by Google App Engine
This is Rietveld 408576698