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

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

Issue 2478423002: Rename SyntheticPointer to SyntheticPointerDriver (Closed)
Patch Set: rename Created 4 years, 1 month 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_tap_gesture.h" 5 #include "content/browser/renderer_host/input/synthetic_tap_gesture.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/WebKit/public/web/WebInputEvent.h" 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
9 #include "ui/events/latency_info.h" 9 #include "ui/events/latency_info.h"
10 10
(...skipping 14 matching lines...) Expand all
25 if (state_ == SETUP) { 25 if (state_ == SETUP) {
26 gesture_source_type_ = params_.gesture_source_type; 26 gesture_source_type_ = params_.gesture_source_type;
27 if (gesture_source_type_ == SyntheticGestureParams::DEFAULT_INPUT) 27 if (gesture_source_type_ == SyntheticGestureParams::DEFAULT_INPUT)
28 gesture_source_type_ = target->GetDefaultSyntheticGestureSourceType(); 28 gesture_source_type_ = target->GetDefaultSyntheticGestureSourceType();
29 29
30 state_ = PRESS; 30 state_ = PRESS;
31 } 31 }
32 32
33 DCHECK_NE(gesture_source_type_, SyntheticGestureParams::DEFAULT_INPUT); 33 DCHECK_NE(gesture_source_type_, SyntheticGestureParams::DEFAULT_INPUT);
34 34
35 if (!synthetic_pointer_) 35 if (!synthetic_pointer_driver_)
36 synthetic_pointer_ = SyntheticPointer::Create(gesture_source_type_); 36 synthetic_pointer_driver_ =
37 SyntheticPointerDriver::Create(gesture_source_type_);
37 38
38 if (gesture_source_type_ == SyntheticGestureParams::TOUCH_INPUT || 39 if (gesture_source_type_ == SyntheticGestureParams::TOUCH_INPUT ||
39 gesture_source_type_ == SyntheticGestureParams::MOUSE_INPUT) 40 gesture_source_type_ == SyntheticGestureParams::MOUSE_INPUT)
40 ForwardTouchOrMouseInputEvents(timestamp, target); 41 ForwardTouchOrMouseInputEvents(timestamp, target);
41 else 42 else
42 return SyntheticGesture::GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED; 43 return SyntheticGesture::GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED;
43 44
44 return (state_ == DONE) ? SyntheticGesture::GESTURE_FINISHED 45 return (state_ == DONE) ? SyntheticGesture::GESTURE_FINISHED
45 : SyntheticGesture::GESTURE_RUNNING; 46 : SyntheticGesture::GESTURE_RUNNING;
46 } 47 }
47 48
48 void SyntheticTapGesture::ForwardTouchOrMouseInputEvents( 49 void SyntheticTapGesture::ForwardTouchOrMouseInputEvents(
49 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) { 50 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
51 int index =
52 gesture_source_type_ == SyntheticGestureParams::MOUSE_INPUT ? -1 : 0;
tdresser 2016/11/12 19:50:56 Hmmm, this is a bit ugly. Maybe the index for mou
lanwei 2016/11/14 04:20:54 Done.
50 switch (state_) { 53 switch (state_) {
51 case PRESS: 54 case PRESS:
52 synthetic_pointer_->Press(params_.position.x(), params_.position.y(), 55 synthetic_pointer_driver_->Press(params_.position.x(),
53 target, timestamp); 56 params_.position.y());
54 synthetic_pointer_->DispatchEvent(target, timestamp); 57 synthetic_pointer_driver_->DispatchEvent(target, timestamp);
55 // Release immediately if duration is 0. 58 // Release immediately if duration is 0.
56 if (params_.duration_ms == 0) { 59 if (params_.duration_ms == 0) {
57 synthetic_pointer_->Release(0, target, timestamp); 60 synthetic_pointer_driver_->Release(index);
58 synthetic_pointer_->DispatchEvent(target, timestamp); 61 synthetic_pointer_driver_->DispatchEvent(target, timestamp);
59 state_ = DONE; 62 state_ = DONE;
60 } else { 63 } else {
61 start_time_ = timestamp; 64 start_time_ = timestamp;
62 state_ = WAITING_TO_RELEASE; 65 state_ = WAITING_TO_RELEASE;
63 } 66 }
64 break; 67 break;
65 case WAITING_TO_RELEASE: 68 case WAITING_TO_RELEASE:
66 if (timestamp - start_time_ >= GetDuration()) { 69 if (timestamp - start_time_ >= GetDuration()) {
67 synthetic_pointer_->Release(0, target, start_time_ + GetDuration()); 70 synthetic_pointer_driver_->Release(index);
68 synthetic_pointer_->DispatchEvent(target, start_time_ + GetDuration()); 71 synthetic_pointer_driver_->DispatchEvent(target,
72 start_time_ + GetDuration());
69 state_ = DONE; 73 state_ = DONE;
70 } 74 }
71 break; 75 break;
72 case SETUP: 76 case SETUP:
73 NOTREACHED() << "State SETUP invalid for synthetic tap gesture."; 77 NOTREACHED() << "State SETUP invalid for synthetic tap gesture.";
74 case DONE: 78 case DONE:
75 NOTREACHED() << "State DONE invalid for synthetic tap gesture."; 79 NOTREACHED() << "State DONE invalid for synthetic tap gesture.";
76 } 80 }
77 } 81 }
78 82
79 base::TimeDelta SyntheticTapGesture::GetDuration() const { 83 base::TimeDelta SyntheticTapGesture::GetDuration() const {
80 return base::TimeDelta::FromMilliseconds(params_.duration_ms); 84 return base::TimeDelta::FromMilliseconds(params_.duration_ms);
81 } 85 }
82 86
83 } // namespace content 87 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698