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

Side by Side Diff: chrome/browser/profiles/profile_statistics.h

Issue 1415223002: Add counts of User data to ProfileInfoCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added methods in profile_statistics.cc to access ProfileInfoCache, fixed a few style errors 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 18 matching lines...) Expand all
29 bool success; 29 bool success;
30 }; 30 };
31 31
32 // Definition of the return value of |ProfileStatisticsCallback|. 32 // Definition of the return value of |ProfileStatisticsCallback|.
33 using ProfileCategoryStats = std::vector<ProfileCategoryStat>; 33 using ProfileCategoryStats = std::vector<ProfileCategoryStat>;
34 34
35 // Definition of the callback function. Note that a copy of 35 // Definition of the callback function. Note that a copy of
36 // |ProfileCategoryStats| is made each time the callback is called. 36 // |ProfileCategoryStats| is made each time the callback is called.
37 using ProfileStatisticsCallback = base::Callback<void(ProfileCategoryStats)>; 37 using ProfileStatisticsCallback = base::Callback<void(ProfileCategoryStats)>;
38 38
39 // Profile Statistics ----------------------------------------------------------
40
39 // This function collects statistical information about |profile| and returns 41 // This function collects statistical information about |profile| and returns
40 // the information via |callback|. Currently bookmarks, history, logins and 42 // the information via |callback|. Currently bookmarks, history, logins and
41 // preferences are counted. The callback function will probably be called more 43 // preferences are counted. The callback function will probably be called more
42 // than once so binding parameters with bind::Passed() is prohibited. 44 // than once so binding parameters with bind::Passed() is prohibited.
43 void GetProfileStatistics(Profile* profile, 45 void GetProfileStatistics(Profile* profile,
44 const ProfileStatisticsCallback& callback, 46 const ProfileStatisticsCallback& callback,
45 base::CancelableTaskTracker* tracker); 47 base::CancelableTaskTracker* tracker);
46 48
49 // ProfileInfoCache ------------------------------------------------------------
50
51 // Gets statistical information about |profile| from ProfileInfoCache.
52 ProfileCategoryStats GetProfileStatisticsFromCache(Profile* profile);
53
54 // Stores statistical information to ProfileInfoCache.
55 void StoreProfileStatisticsToCache(Profile* profile,
56 const std::string& category, int count);
57
47 } // namespace profiles 58 } // namespace profiles
48 59
49 #endif // CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_ 60 #endif // CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698