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

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

Issue 929333002: Adding synthetic touch/mouse drag [Part1] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments. Created 5 years, 10 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/renderer_host/input/synthetic_smooth_drag_gesture.h"
6
7 namespace content {
8
9 SyntheticSmoothDragGesture::SyntheticSmoothDragGesture(
10 const SyntheticSmoothDragGestureParams& params)
11 : params_(params) {
12 }
13
14 SyntheticSmoothDragGesture::~SyntheticSmoothDragGesture() {
15 }
16
17 SyntheticGesture::Result SyntheticSmoothDragGesture::ForwardInputEvents(
18 const base::TimeTicks& timestamp,
19 SyntheticGestureTarget* target) {
20 if (!move_gesture_) {
21 if (!InitializeMoveGesture(params_.gesture_source_type, target))
22 return SyntheticGesture::GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED;
23 }
24 return move_gesture_->ForwardInputEvents(timestamp, target);
25 }
26
27 SyntheticSmoothMoveGestureParams::InputType
28 SyntheticSmoothDragGesture::GetInputSourceType(
29 SyntheticGestureParams::GestureSourceType gesture_source_type) {
30 if (gesture_source_type == SyntheticGestureParams::MOUSE_INPUT)
31 return SyntheticSmoothMoveGestureParams::MOUSE_DRAG_INPUT;
32 else
33 return SyntheticSmoothMoveGestureParams::TOUCH_INPUT;
34 }
35
36 bool SyntheticSmoothDragGesture::InitializeMoveGesture(
37 SyntheticGestureParams::GestureSourceType gesture_type,
38 SyntheticGestureTarget* target) {
39 if (gesture_type == SyntheticGestureParams::DEFAULT_INPUT)
40 gesture_type = target->GetDefaultSyntheticGestureSourceType();
41
42 if (gesture_type == SyntheticGestureParams::TOUCH_INPUT ||
43 gesture_type == SyntheticGestureParams::MOUSE_INPUT) {
44 SyntheticSmoothMoveGestureParams move_params;
45 move_params.start_point = params_.start_point;
46 move_params.distances = params_.distances;
47 move_params.speed_in_pixels_s = params_.speed_in_pixels_s;
48 move_params.prevent_fling = true;
49 move_params.input_type = GetInputSourceType(gesture_type);
50 move_params.add_slop = false;
51 move_gesture_.reset(new SyntheticSmoothMoveGesture(move_params));
52 return true;
53 }
54 return false;
55 }
56
57 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698