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

Unified Diff: chrome/browser/ui/views/touch_uma/touch_uma_ash.cc

Issue 2223553003: Adds WmShell::RecordGestureAction() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gyp Created 4 years, 4 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
« no previous file with comments | « ash/wm/workspace/workspace_event_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/touch_uma/touch_uma_ash.cc
diff --git a/chrome/browser/ui/views/touch_uma/touch_uma_ash.cc b/chrome/browser/ui/views/touch_uma/touch_uma_ash.cc
index 14fc5d3c42b2be8f9efea1ac026ced388f2f7977..3b4b56f7fd56950e56316190bce5f3a3e0e4422a 100644
--- a/chrome/browser/ui/views/touch_uma/touch_uma_ash.cc
+++ b/chrome/browser/ui/views/touch_uma/touch_uma_ash.cc
@@ -8,22 +8,22 @@
// static
void TouchUMA::RecordGestureAction(GestureActionType action) {
- ash::TouchUMA::GestureActionType type = ash::TouchUMA::GESTURE_UNKNOWN;
+ ash::GestureActionType type = ash::GESTURE_UNKNOWN;
switch (action) {
case GESTURE_TABSWITCH_TAP:
- type = ash::TouchUMA::GESTURE_TABSWITCH_TAP;
+ type = ash::GESTURE_TABSWITCH_TAP;
break;
case GESTURE_TABNOSWITCH_TAP:
- type = ash::TouchUMA::GESTURE_TABNOSWITCH_TAP;
+ type = ash::GESTURE_TABNOSWITCH_TAP;
break;
case GESTURE_TABCLOSE_TAP:
- type = ash::TouchUMA::GESTURE_TABCLOSE_TAP;
+ type = ash::GESTURE_TABCLOSE_TAP;
break;
case GESTURE_NEWTAB_TAP:
- type = ash::TouchUMA::GESTURE_NEWTAB_TAP;
+ type = ash::GESTURE_NEWTAB_TAP;
break;
case GESTURE_ROOTVIEWTOP_TAP:
- type = ash::TouchUMA::GESTURE_ROOTVIEWTOP_TAP;
+ type = ash::GESTURE_ROOTVIEWTOP_TAP;
break;
}
ash::TouchUMA::GetInstance()->RecordGestureAction(type);
« no previous file with comments | « ash/wm/workspace/workspace_event_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698