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

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

Issue 1248613003: Issue 501916 : Add data type counts to profile deletion flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated chromeos empty "localized" strings in signin_screen_handler.cc Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
7
8 #include <string>
9 #include <utility>
10 #include <vector>
11 #include "base/task/cancelable_task_tracker.h"
12 #include "chrome/browser/profiles/profile.h"
13
14 namespace profiles {
15
16 // Definition of the return value of |ProfileStatisticsCallback|.
17 // The data stored in |ProfileStatisticsValues| looks like this:
18 // <"Browsing History", 912>, <"Passwords", 71>, <"Bookmarks", 120>,
19 // <"Settings", 200>
20 typedef std::vector<std::pair<std::string, int> > ProfileStatisticsValues;
21
22 // Definition of the callback function. Note that a copy of
23 // |ProfileStatisticsValues| is made each time the callback is called.
24 typedef base::Callback<void(ProfileStatisticsValues)>
25 ProfileStatisticsCallback;
26
27 // This fucntion collects statistical information about |profile| and returns
Mike Lerman 2015/08/05 19:26:09 nit: spelling (fucntion/function)
lwchkg 2015/08/06 04:32:59 Acknowledged.
28 // the information via |callback|. Currently bookmarks, history, logins and
29 // preferences are counted. The callback function may be called more than once.
Mike Lerman 2015/08/05 19:26:09 I'd replace "may" with "will probably", before "be
lwchkg 2015/08/06 04:32:59 Acknowledged.
30 void GetProfileStatistics(Profile* profile,
31 const ProfileStatisticsCallback& callback,
32 base::CancelableTaskTracker* tracker);
33
34 } // namespace profiles
35
36 #endif // CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698