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

Unified Diff: chrome/browser/ui/browser_command_controller.cc

Issue 1124153007: Added the Ash.Tab.TimeBetweenSwitchToExistingTabUserActions histogram to track time between tab swit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the branch that the diff was based on. Created 5 years, 7 months 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: chrome/browser/ui/browser_command_controller.cc
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc
index 570de3e90725c3d34d091445a5d418eab49342d7..17c5b08e55bb02ace28f14d8daf241d86ebbd8dd 100644
--- a/chrome/browser/ui/browser_command_controller.cc
+++ b/chrome/browser/ui/browser_command_controller.cc
@@ -425,11 +425,13 @@ void BrowserCommandController::ExecuteCommandWithDisposition(
case IDC_SELECT_NEXT_TAB:
content::RecordAction(base::UserMetricsAction("Accel_SelectNextTab"));
SelectNextTab(browser_);
+ // TODO(bruthig):
break;
case IDC_SELECT_PREVIOUS_TAB:
content::RecordAction(
base::UserMetricsAction("Accel_SelectPreviousTab"));
SelectPreviousTab(browser_);
+ // TODO(bruthig):
break;
case IDC_MOVE_TAB_NEXT:
MoveTabNext(browser_);

Powered by Google App Engine
This is Rietveld 408576698