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

Unified Diff: chrome/browser/chromeos/profiles/profile_helper.cc

Issue 2578723002: Reduce BrowsingDataRemover's dependencies on Chrome (Closed)
Patch Set: A new callsite appeared through rebase - fixed the compilation error. Created 3 years, 12 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/chromeos/profiles/profile_helper.cc
diff --git a/chrome/browser/chromeos/profiles/profile_helper.cc b/chrome/browser/chromeos/profiles/profile_helper.cc
index 22876498d711b231166f27b449c13362e06fa615..bb90818647f3a1271b15a645ba1931c58c5389d5 100644
--- a/chrome/browser/chromeos/profiles/profile_helper.cc
+++ b/chrome/browser/chromeos/profiles/profile_helper.cc
@@ -263,7 +263,7 @@ void ProfileHelper::ClearSigninProfile(const base::Closure& on_clear_callback) {
BrowsingDataRemoverFactory::GetForBrowserContext(GetSigninProfile());
browsing_data_remover_->AddObserver(this);
browsing_data_remover_->RemoveAndReply(
- BrowsingDataRemover::Unbounded(), BrowsingDataRemover::REMOVE_SITE_DATA,
+ base::Time(), base::Time::Max(), BrowsingDataRemover::REMOVE_SITE_DATA,
BrowsingDataHelper::ALL, this);
} else {
on_clear_profile_stage_finished_.Run();

Powered by Google App Engine
This is Rietveld 408576698