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

Unified Diff: content/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: Move to content namespace. Update usages. Update extract_actions tool. 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/user_metrics.h
diff --git a/content/browser/user_metrics.h b/content/browser/user_metrics.h
deleted file mode 100644
index ae04af3d49aa6220c2dee4f09835f2e72d3ce7b3..0000000000000000000000000000000000000000
--- a/content/browser/user_metrics.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// 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_BROWSER_USER_METRICS_H_
-#define CONTENT_BROWSER_USER_METRICS_H_
-#pragma once
-
-#include <string>
-
-#include "content/common/content_export.h"
-
-// 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) {}
-};
-
-
-class CONTENT_EXPORT UserMetrics {
- public:
- // 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: Call this function exactly like this:
- // UserMetrics::RecordAction(UserMetricsAction("foo bar"));
- // (all on one line and with the metric string literal [no variables])
- // 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.
- static 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.
- static void RecordComputedAction(const std::string& action);
-
- private:
- static void Record(const char *action);
- static void CallRecordOnUI(const std::string& action);
-};
-
-#endif // CONTENT_BROWSER_USER_METRICS_H_

Powered by Google App Engine
This is Rietveld 408576698