summaryrefslogtreecommitdiffstats
path: root/content/public/browser/user_metrics.h
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-14 13:23:38 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-14 13:23:38 +0000
commit7f6f44c9e44707612415d4c85cfe9924aeacd917 (patch)
tree167b6d29691a127ef3ab1ada5b6f9c774d99363d /content/public/browser/user_metrics.h
parent7af0889d30c9a27b916aa49d4bfea7ea92465072 (diff)
downloadchromium_src-7f6f44c9e44707612415d4c85cfe9924aeacd917.zip
chromium_src-7f6f44c9e44707612415d4c85cfe9924aeacd917.tar.gz
chromium_src-7f6f44c9e44707612415d4c85cfe9924aeacd917.tar.bz2
Split UserMetrics into API vs. implementation. Move API to content/public.
TBR=davemoore@chromium.org BUG=98716 Review URL: http://codereview.chromium.org/8919017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114416 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/user_metrics.h')
-rw-r--r--content/public/browser/user_metrics.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/content/public/browser/user_metrics.h b/content/public/browser/user_metrics.h
new file mode 100644
index 0000000..7bbc3bf
--- /dev/null
+++ b/content/public/browser/user_metrics.h
@@ -0,0 +1,56 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_USER_METRICS_H_
+#define CONTENT_PUBLIC_BROWSER_USER_METRICS_H_
+#pragma once
+
+#include <string>
+
+#include "content/common/content_export.h"
+
+namespace content {
+
+// This module provides some helper functions for logging actions tracked by
+// the user metrics system.
+
+
+// UserMetricsAction exist purely to standardize on the paramters passed to
+// UserMetrics. That way, our toolset can scan the sourcecode reliable for
+// constructors and extract the associated string constants
+struct UserMetricsAction {
+ const char* str_;
+ explicit UserMetricsAction(const char* str) : str_(str) {}
+};
+
+// Record that the user performed an action.
+// "Action" here means a user-generated event:
+// good: "Reload", "CloseTab", and "IMEInvoked"
+// not good: "SSLDialogShown", "PageLoaded", "DiskFull"
+// We use this to gather anonymized information about how users are
+// interacting with the browser.
+// WARNING: In calls to this function, UserMetricsAction and a
+// string literal parameter must be on the same line, e.g.
+// content::RecordAction(
+// content::UserMetricsAction("my extremely long action name"));
+// because otherwise our processing scripts won't pick up on new actions.
+//
+// Once a new recorded action is added, run chrome/tools/extract_actions.py
+// to generate a new mapping of [action hashes -> metric names] and send it
+// out for review to be updated.
+//
+// For more complicated situations (like when there are many different
+// possible actions), see RecordComputedAction.
+CONTENT_EXPORT void RecordAction(const UserMetricsAction& action);
+
+// This function has identical input and behavior to RecordAction, but is
+// not automatically found by the action-processing scripts. It can be used
+// when it's a pain to enumerate all possible actions, but if you use this
+// you need to also update the rules for extracting known actions in
+// chrome/tools/extract_actions.py.
+CONTENT_EXPORT void RecordComputedAction(const std::string& action);
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_USER_METRICS_H_