diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 18:26:16 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 18:26:16 +0000 |
commit | 0db969d162b0ccbdb877a22dbe896a7aa810768f (patch) | |
tree | 040597e8ff93d1729a3b6232ae14408758866d51 /chrome/browser/ui/browser_command_controller.cc | |
parent | ef5a165bd22f35d00e626807488531e4f138e289 (diff) | |
download | chromium_src-0db969d162b0ccbdb877a22dbe896a7aa810768f.zip chromium_src-0db969d162b0ccbdb877a22dbe896a7aa810768f.tar.gz chromium_src-0db969d162b0ccbdb877a22dbe896a7aa810768f.tar.bz2 |
Add user action counts for next and previous tab
BUG=none
TEST=none
R=sky@chromium.org
Review URL: https://codereview.chromium.org/15894007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203185 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_command_controller.cc')
-rw-r--r-- | chrome/browser/ui/browser_command_controller.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc index 04bc0e2..b5dc24d 100644 --- a/chrome/browser/ui/browser_command_controller.cc +++ b/chrome/browser/ui/browser_command_controller.cc @@ -387,9 +387,12 @@ void BrowserCommandController::ExecuteCommandWithDisposition( CloseTab(browser_); break; case IDC_SELECT_NEXT_TAB: + content::RecordAction(content::UserMetricsAction("Accel_SelectNextTab")); SelectNextTab(browser_); break; case IDC_SELECT_PREVIOUS_TAB: + content::RecordAction( + content::UserMetricsAction("Accel_SelectPreviousTab")); SelectPreviousTab(browser_); break; case IDC_TABPOSE: |