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

Side by Side Diff: content/public/browser/user_metrics.h

Issue 8919017: Split UserMetrics into API vs. implementation. Move API to content/public. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Version for commit (merged again). Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 CONTENT_PUBLIC_BROWSER_USER_METRICS_H_
6 #define CONTENT_PUBLIC_BROWSER_USER_METRICS_H_
7 #pragma once
8
9 #include <string>
10
11 #include "content/common/content_export.h"
12
13 namespace content {
14
15 // This module provides some helper functions for logging actions tracked by
16 // the user metrics system.
17
18
19 // UserMetricsAction exist purely to standardize on the paramters passed to
20 // UserMetrics. That way, our toolset can scan the sourcecode reliable for
21 // constructors and extract the associated string constants
22 struct UserMetricsAction {
23 const char* str_;
24 explicit UserMetricsAction(const char* str) : str_(str) {}
25 };
26
27 // Record that the user performed an action.
28 // "Action" here means a user-generated event:
29 // good: "Reload", "CloseTab", and "IMEInvoked"
30 // not good: "SSLDialogShown", "PageLoaded", "DiskFull"
31 // We use this to gather anonymized information about how users are
32 // interacting with the browser.
33 // WARNING: In calls to this function, UserMetricsAction and a
34 // string literal parameter must be on the same line, e.g.
35 // content::RecordAction(
36 // content::UserMetricsAction("my extremely long action name"));
37 // because otherwise our processing scripts won't pick up on new actions.
38 //
39 // Once a new recorded action is added, run chrome/tools/extract_actions.py
40 // to generate a new mapping of [action hashes -> metric names] and send it
41 // out for review to be updated.
42 //
43 // For more complicated situations (like when there are many different
44 // possible actions), see RecordComputedAction.
45 CONTENT_EXPORT void RecordAction(const UserMetricsAction& action);
46
47 // This function has identical input and behavior to RecordAction, but is
48 // not automatically found by the action-processing scripts. It can be used
49 // when it's a pain to enumerate all possible actions, but if you use this
50 // you need to also update the rules for extracting known actions in
51 // chrome/tools/extract_actions.py.
52 CONTENT_EXPORT void RecordComputedAction(const std::string& action);
53
54 } // namespace content
55
56 #endif // CONTENT_PUBLIC_BROWSER_USER_METRICS_H_
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698