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

Issue 2478423002: Rename SyntheticPointer to SyntheticPointerDriver (Closed)

Created:
4 years, 1 month ago by lanwei
Modified:
4 years ago
CC:
chromium-reviews, jam, darin-cc_chromium.org, dtapuska+chromiumwatch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Rename SyntheticPointer to SyntheticPointerDriver Rename SyntheticPointer to SyntheticPointerDriver, SyntheticTouchPointer to SyntheticTouchDriver, and SyntheticMousePointer to SyntheticMouseDriver, because these classes do not represent the synthetic pointers. They actually create synthetic pointers for each pointer types and their actions. BUG=525187 Committed: https://crrev.com/1060f1f73a8498e324d05fcfd2fdca621bc9b15e Cr-Commit-Position: refs/heads/master@{#434763}

Patch Set 1 : rename #

Total comments: 4

Patch Set 2 : Move valid user input in SyntheticPointerDriver #

Total comments: 2

Patch Set 3 : rename #

Total comments: 20

Patch Set 4 : rename #

Total comments: 12

Patch Set 5 : rename #

Total comments: 7

Patch Set 6 : rename #

Unified diffs Side-by-side diffs Delta from patch set Stats (+504 lines, -559 lines) Patch
M content/browser/BUILD.gn View 1 2 3 4 5 2 chunks +6 lines, -6 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc View 1 2 3 4 1 chunk +0 lines, -1 line 0 comments Download
A content/browser/renderer_host/input/synthetic_mouse_driver.h View 1 2 3 4 5 1 chunk +37 lines, -0 lines 0 comments Download
A content/browser/renderer_host/input/synthetic_mouse_driver.cc View 1 2 3 4 1 chunk +70 lines, -0 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_mouse_pointer.h View 1 chunk +0 lines, -45 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_mouse_pointer.cc View 1 chunk +0 lines, -57 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_pointer.h View 1 chunk +0 lines, -54 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_pointer.cc View 1 2 3 4 1 chunk +0 lines, -36 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_pointer_action.h View 1 2 3 chunks +8 lines, -22 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_pointer_action.cc View 1 2 3 4 1 chunk +24 lines, -51 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc View 1 2 3 4 19 chunks +114 lines, -110 lines 0 comments Download
A content/browser/renderer_host/input/synthetic_pointer_driver.h View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A + content/browser/renderer_host/input/synthetic_pointer_driver.cc View 1 2 3 4 1 chunk +10 lines, -11 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_smooth_move_gesture.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_smooth_move_gesture.cc View 1 4 4 chunks +13 lines, -15 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_tap_gesture.h View 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_tap_gesture.cc View 1 2 3 4 3 chunks +11 lines, -9 lines 0 comments Download
A content/browser/renderer_host/input/synthetic_touch_driver.h View 1 2 1 chunk +39 lines, -0 lines 0 comments Download
A content/browser/renderer_host/input/synthetic_touch_driver.cc View 1 2 3 4 1 chunk +72 lines, -0 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_touch_pointer.h View 1 chunk +0 lines, -47 lines 0 comments Download
D content/browser/renderer_host/input/synthetic_touch_pointer.cc View 1 chunk +0 lines, -51 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_touchscreen_pinch_gesture.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_touchscreen_pinch_gesture.cc View 1 2 3 chunks +12 lines, -13 lines 0 comments Download
M content/common/input/input_param_traits_unittest.cc View 1 2 3 4 5 chunks +9 lines, -10 lines 0 comments Download
M content/common/input/synthetic_pointer_action_params.h View 1 2 3 4 3 chunks +10 lines, -10 lines 0 comments Download
M content/common/input/synthetic_pointer_action_params.cc View 1 2 3 4 2 chunks +12 lines, -4 lines 0 comments Download
M tools/ipc_fuzzer/fuzzer/fuzzer.cc View 1 2 3 4 5 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 102 (80 generated)
lanwei
4 years, 1 month ago (2016-11-06 12:53:11 UTC) #26
tdresser
https://codereview.chromium.org/2478423002/diff/80001/content/browser/renderer_host/input/synthetic_pointer_action.cc File content/browser/renderer_host/input/synthetic_pointer_action.cc (right): https://codereview.chromium.org/2478423002/diff/80001/content/browser/renderer_host/input/synthetic_pointer_action.cc#newcode66 content/browser/renderer_host/input/synthetic_pointer_action.cc:66: params.index() >= WebTouchEvent::kTouchesLengthCap)) { I'd split this up to ...
4 years, 1 month ago (2016-11-07 17:44:12 UTC) #27
lanwei
https://codereview.chromium.org/2478423002/diff/80001/content/browser/renderer_host/input/synthetic_pointer_action.cc File content/browser/renderer_host/input/synthetic_pointer_action.cc (right): https://codereview.chromium.org/2478423002/diff/80001/content/browser/renderer_host/input/synthetic_pointer_action.cc#newcode66 content/browser/renderer_host/input/synthetic_pointer_action.cc:66: params.index() >= WebTouchEvent::kTouchesLengthCap)) { On 2016/11/07 17:44:11, tdresser wrote: ...
4 years, 1 month ago (2016-11-07 23:28:49 UTC) #30
tdresser
https://codereview.chromium.org/2478423002/diff/100001/content/browser/renderer_host/input/synthetic_mouse_driver.cc File content/browser/renderer_host/input/synthetic_mouse_driver.cc (right): https://codereview.chromium.org/2478423002/diff/100001/content/browser/renderer_host/input/synthetic_mouse_driver.cc#newcode21 content/browser/renderer_host/input/synthetic_mouse_driver.cc:21: void SyntheticMouseDriver::Press(float x, float y, int index) { Can ...
4 years, 1 month ago (2016-11-08 15:16:34 UTC) #33
lanwei
4 years, 1 month ago (2016-11-10 03:58:35 UTC) #43
tdresser
https://codereview.chromium.org/2478423002/diff/140001/content/browser/renderer_host/input/synthetic_mouse_driver.cc File content/browser/renderer_host/input/synthetic_mouse_driver.cc (right): https://codereview.chromium.org/2478423002/diff/140001/content/browser/renderer_host/input/synthetic_mouse_driver.cc#newcode28 content/browser/renderer_host/input/synthetic_mouse_driver.cc:28: void SyntheticMouseDriver::Move(float x, float y, int index) { DCHECK ...
4 years, 1 month ago (2016-11-10 14:58:32 UTC) #44
lanwei
https://codereview.chromium.org/2478423002/diff/140001/content/browser/renderer_host/input/synthetic_mouse_driver.cc File content/browser/renderer_host/input/synthetic_mouse_driver.cc (right): https://codereview.chromium.org/2478423002/diff/140001/content/browser/renderer_host/input/synthetic_mouse_driver.cc#newcode28 content/browser/renderer_host/input/synthetic_mouse_driver.cc:28: void SyntheticMouseDriver::Move(float x, float y, int index) { On ...
4 years, 1 month ago (2016-11-10 19:45:23 UTC) #49
tdresser
https://codereview.chromium.org/2478423002/diff/160001/content/browser/renderer_host/input/synthetic_mouse_driver.cc File content/browser/renderer_host/input/synthetic_mouse_driver.cc (right): https://codereview.chromium.org/2478423002/diff/160001/content/browser/renderer_host/input/synthetic_mouse_driver.cc#newcode24 content/browser/renderer_host/input/synthetic_mouse_driver.cc:24: mouse_event_.clickCount = 1; Currently, if you double click, we'll ...
4 years, 1 month ago (2016-11-12 19:50:56 UTC) #50
lanwei
https://codereview.chromium.org/2478423002/diff/160001/content/browser/renderer_host/input/synthetic_mouse_driver.cc File content/browser/renderer_host/input/synthetic_mouse_driver.cc (right): https://codereview.chromium.org/2478423002/diff/160001/content/browser/renderer_host/input/synthetic_mouse_driver.cc#newcode24 content/browser/renderer_host/input/synthetic_mouse_driver.cc:24: mouse_event_.clickCount = 1; On 2016/11/12 19:50:55, tdresser wrote: > ...
4 years, 1 month ago (2016-11-14 04:20:54 UTC) #58
lanwei
4 years, 1 month ago (2016-11-15 05:50:46 UTC) #75
lanwei
4 years, 1 month ago (2016-11-16 16:17:11 UTC) #79
Navid Zolghadr
lgtm https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_mouse_driver.h File content/browser/renderer_host/input/synthetic_mouse_driver.h (right): https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_mouse_driver.h#newcode24 content/browser/renderer_host/input/synthetic_mouse_driver.h:24: void Move(float x, float y, int index) override; ...
4 years, 1 month ago (2016-11-21 17:56:47 UTC) #80
lanwei
https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc File content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc (right): https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc#newcode263 content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc:263: action_param_list_->push_back(params1); On 2016/11/21 17:56:46, Navid Zolghadr wrote: > Not ...
4 years ago (2016-11-23 19:59:23 UTC) #81
Navid Zolghadr
https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc File content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc (right): https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc#newcode263 content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc:263: action_param_list_->push_back(params1); On 2016/11/23 19:59:23, lanwei wrote: > On 2016/11/21 ...
4 years ago (2016-11-23 20:08:21 UTC) #82
tdresser
LGTM https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc File content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc (right): https://codereview.chromium.org/2478423002/diff/280001/content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc#newcode263 content/browser/renderer_host/input/synthetic_pointer_action_unittest.cc:263: action_param_list_->push_back(params1); On 2016/11/23 20:08:21, Navid Zolghadr wrote: > ...
4 years ago (2016-11-28 15:12:03 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2478423002/300001
4 years ago (2016-11-28 18:50:31 UTC) #89
lanwei
avi@ could you please take a look at content/browser/BUILD.gn? Martin, could you please take a ...
4 years ago (2016-11-28 19:17:55 UTC) #93
Avi (use Gerrit)
gn file lgtm
4 years ago (2016-11-28 19:22:51 UTC) #94
Martin Barbella
ipc lgtm
4 years ago (2016-11-28 20:14:30 UTC) #95
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2478423002/300001
4 years ago (2016-11-28 20:17:39 UTC) #97
commit-bot: I haz the power
Committed patchset #6 (id:300001)
4 years ago (2016-11-28 23:01:04 UTC) #100
commit-bot: I haz the power
4 years ago (2016-11-28 23:05:03 UTC) #102
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/1060f1f73a8498e324d05fcfd2fdca621bc9b15e
Cr-Commit-Position: refs/heads/master@{#434763}

Powered by Google App Engine
This is Rietveld 408576698