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

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 11238034: Added completion notification to Profile's ClearNetworkingHistorySince. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Increased similarity threshold... Created 8 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/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index 735cba8acb25dc9e8cff36bb2870cc7a987155a7..e7cd7c87520d34d8edef126c80f44d859e218d77 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -1087,8 +1087,9 @@ chrome_browser_net::Predictor* ProfileImpl::GetNetworkPredictor() {
return predictor_;
}
-void ProfileImpl::ClearNetworkingHistorySince(base::Time time) {
- io_data_.ClearNetworkingHistorySince(time);
+void ProfileImpl::ClearNetworkingHistorySince(base::Time time,
+ const base::Closure& completion) {
+ io_data_.ClearNetworkingHistorySince(time, completion);
}
GURL ProfileImpl::GetHomePage() {

Powered by Google App Engine
This is Rietveld 408576698