diff options
author | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 08:10:18 +0000 |
---|---|---|
committer | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 08:10:18 +0000 |
commit | 5d2ea361990ac129fd0385c4c85efd17917edfc0 (patch) | |
tree | 028f0b44d7bda24c341e4bd65e58c2b6b88a1967 /ash/shell.cc | |
parent | 7f635540943693cca1748e6f7d7345269befac59 (diff) | |
download | chromium_src-5d2ea361990ac129fd0385c4c85efd17917edfc0.zip chromium_src-5d2ea361990ac129fd0385c4c85efd17917edfc0.tar.gz chromium_src-5d2ea361990ac129fd0385c4c85efd17917edfc0.tar.bz2 |
Adding UMA metric tracking to the status are menu and related tray views to track usage of the menu's.
BUG=297046
Review URL: https://codereview.chromium.org/73583003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240537 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.cc')
-rw-r--r-- | ash/shell.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ash/shell.cc b/ash/shell.cc index d7b18ca..3242a16 100644 --- a/ash/shell.cc +++ b/ash/shell.cc @@ -83,6 +83,7 @@ #include "base/command_line.h" #include "base/debug/leak_annotations.h" #include "base/debug/trace_event.h" +#include "content/public/browser/user_metrics.h" #include "ui/aura/client/aura_constants.h" #include "ui/aura/client/user_action_client.h" #include "ui/aura/env.h" @@ -576,7 +577,7 @@ Shell::Shell(ShellDelegate* delegate) gpu::GPU_FEATURE_TYPE_PANEL_FITTING); output_configurator_->Init(!is_panel_fitting_disabled); - periodic_metrics_recorder_.reset(new PeriodicMetricsRecorder); + user_metrics_recorder_.reset(new UserMetricsRecorder); base::MessagePumpX11::Current()->AddDispatcherForRootWindow( output_configurator()); |