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

Unified Diff: chrome/browser/profiles/profile_statistics.h

Issue 1428973003: Utilize ProfileInfoCache to support data type counts in profile deletion flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased and updated related code. Created 5 years, 1 month 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_statistics.h
diff --git a/chrome/browser/profiles/profile_statistics.h b/chrome/browser/profiles/profile_statistics.h
index 61bba0d7c93cc61d941e1d3bf5180d7be1e695ca..d65713f3d58114415b10c49e59537098ff808b45 100644
--- a/chrome/browser/profiles/profile_statistics.h
+++ b/chrome/browser/profiles/profile_statistics.h
@@ -42,11 +42,16 @@ using ProfileStatisticsCallback = base::Callback<void(ProfileCategoryStats)>;
// This function collects statistical information about |profile| and returns
// the information via |callback|. Currently bookmarks, history, logins and
// preferences are counted. The callback function will probably be called more
-// than once so binding parameters with bind::Passed() is prohibited.
+// than once so binding parameters with bind::Passed() is prohibited. The
+// statistical information are also copied to ProfileInfoCache.
void GetProfileStatistics(Profile* profile,
const ProfileStatisticsCallback& callback,
base::CancelableTaskTracker* tracker);
+// This function collects statistical information about |profile| and sends the
+// information to ProfileInfoCache.
Mike Lerman 2015/11/26 15:06:25 nit: to the ProfileInfoCache
lwchkg 2015/12/02 15:33:34 Acknowledged.
+void StoreProfileStatisticsToCache(Profile* profile);
Mike Lerman 2015/11/26 15:06:25 Why is this method really needed? Can't I just cal
lwchkg 2015/12/02 15:33:34 Calling GetProfileStatistics to store the statisti
Mike Lerman 2015/12/07 16:21:20 You could rename GetProfileStatistics to GatherPro
lwchkg 2015/12/09 03:39:41 Brilliant idea! Problem solved. And now I finally
+
// ProfileInfoCache ------------------------------------------------------------
// Gets statistical information from ProfileInfoCache.

Powered by Google App Engine
This is Rietveld 408576698