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

Side by Side Diff: content/browser/renderer_host/input/synthetic_gesture.cc

Issue 1884883005: Prepare SyntheticPointerAction to handle touch actions for multiple fingers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: return nullptr Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/input/synthetic_gesture.h" 5 #include "content/browser/renderer_host/input/synthetic_gesture.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/renderer_host/input/synthetic_gesture_target.h" 8 #include "content/browser/renderer_host/input/synthetic_gesture_target.h"
9 #include "content/browser/renderer_host/input/synthetic_pinch_gesture.h" 9 #include "content/browser/renderer_host/input/synthetic_pinch_gesture.h"
10 #include "content/browser/renderer_host/input/synthetic_pointer_action.h" 10 #include "content/browser/renderer_host/input/synthetic_pointer_action.h"
(...skipping 25 matching lines...) Expand all
36 SyntheticSmoothScrollGestureParams>(gesture_params); 36 SyntheticSmoothScrollGestureParams>(gesture_params);
37 case SyntheticGestureParams::SMOOTH_DRAG_GESTURE: 37 case SyntheticGestureParams::SMOOTH_DRAG_GESTURE:
38 return CreateGesture<SyntheticSmoothDragGesture, 38 return CreateGesture<SyntheticSmoothDragGesture,
39 SyntheticSmoothDragGestureParams>(gesture_params); 39 SyntheticSmoothDragGestureParams>(gesture_params);
40 case SyntheticGestureParams::PINCH_GESTURE: 40 case SyntheticGestureParams::PINCH_GESTURE:
41 return CreateGesture<SyntheticPinchGesture, 41 return CreateGesture<SyntheticPinchGesture,
42 SyntheticPinchGestureParams>(gesture_params); 42 SyntheticPinchGestureParams>(gesture_params);
43 case SyntheticGestureParams::TAP_GESTURE: 43 case SyntheticGestureParams::TAP_GESTURE:
44 return CreateGesture<SyntheticTapGesture, 44 return CreateGesture<SyntheticTapGesture,
45 SyntheticTapGestureParams>(gesture_params); 45 SyntheticTapGestureParams>(gesture_params);
46 case SyntheticGestureParams::POINTER_ACTION: 46 default:
47 return CreateGesture<SyntheticPointerAction, 47 NOTREACHED() << "Invalid synthetic gesture type";
48 SyntheticPointerActionParams>(gesture_params); 48 return nullptr;
49 } 49 }
50 NOTREACHED() << "Invalid synthetic gesture type";
51 return std::unique_ptr<SyntheticGesture>();
52 } 50 }
53 51
54 } // namespace content 52 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698