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

Issue 2250233002: Type->String helper function added to WebInputEvent. (Closed)

Created:
4 years, 4 months ago by sahel
Modified:
4 years, 3 months ago
CC:
chromium-reviews, mlamouri+watch-content_chromium.org, mlamouri+watch-test-runner_chromium.org, mlamouri+watch-blink_chromium.org, shuchen+watch_chromium.org, jam, dtapuska+chromiumwatch_chromium.org, nona+watch_chromium.org, dglazkov+blink, darin-cc_chromium.org, dcheng, blink-reviews, kinuko+watch, James Su, blink-reviews-api_chromium.org, jochen+watch_chromium.org, yusukes+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Type->String helper function added to WebInputEvent. WebInputEventTraits::GetName and PageWidgetEventHandler::inputTypeToName cleaned up. The helper function is called in TestPlugin::handleInputEvent instead of re-implementation of the Type->String. No test is written for this cl. BUG=594223 Committed: https://crrev.com/df93225cc0d68727634f91d40e17a9cbe881aa1c Cr-Commit-Position: refs/heads/master@{#414580}

Patch Set 1 #

Total comments: 2

Patch Set 2 : #

Patch Set 3 : merged with the conflicting patch. #

Patch Set 4 : build dependencies fixed. #

Patch Set 5 : Blink_Common_export instead of blink_export #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+80 lines, -243 lines) Patch
M components/test_runner/test_plugin.cc View 1 chunk +5 lines, -114 lines 0 comments Download
M content/browser/android/content_view_core_impl.cc View 1 2 3 4 1 chunk +1 line, -1 line 1 comment Download
M content/browser/renderer_host/input/gesture_event_queue.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/input/input_router_impl.cc View 1 2 2 chunks +5 lines, -7 lines 0 comments Download
M content/browser/renderer_host/input/render_widget_host_latency_tracker.cc View 1 2 1 chunk +2 lines, -3 lines 0 comments Download
M content/browser/renderer_host/input/synthetic_gesture_target_base.cc View 1 2 1 chunk +2 lines, -3 lines 0 comments Download
M content/browser/renderer_host/input/touch_emulator_unittest.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/render_widget_host_unittest.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/render_widget_host_view_mac_unittest.mm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/common/input/gesture_event_stream_validator.cc View 1 2 1 chunk +2 lines, -3 lines 0 comments Download
M content/common/input/touch_event_stream_validator.cc View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M content/renderer/input/input_handler_manager.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/input/render_widget_input_handler.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/web/PageWidgetDelegate.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/PageWidgetDelegate.cpp View 1 chunk +0 lines, -44 lines 0 comments Download
M third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp View 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/web/WebInputEvent.cpp View 1 1 chunk +46 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/WebViewImpl.cpp View 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/public/platform/WebInputEvent.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M ui/events/blink/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M ui/events/blink/web_input_event_traits.h View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M ui/events/blink/web_input_event_traits.cc View 1 2 3 4 2 chunks +1 line, -50 lines 0 comments Download

Messages

Total messages: 51 (31 generated)
sahel
4 years, 4 months ago (2016-08-16 20:34:16 UTC) #4
dtapuska
https://codereview.chromium.org/2250233002/diff/1/third_party/WebKit/public/platform/WebInputEvent.h File third_party/WebKit/public/platform/WebInputEvent.h (right): https://codereview.chromium.org/2250233002/diff/1/third_party/WebKit/public/platform/WebInputEvent.h#newcode263 third_party/WebKit/public/platform/WebInputEvent.h:263: static const char* GetName(WebInputEvent::Type type) Can you move this ...
4 years, 4 months ago (2016-08-16 21:02:40 UTC) #6
ncarter (slow)
fyi, this is going to be in conflict with https://codereview.chromium.org/2240983003/
4 years, 4 months ago (2016-08-16 21:32:25 UTC) #10
mustaq
LGTM. Please sync with chongz to decide which of the CLs should go in first.
4 years, 4 months ago (2016-08-17 14:46:24 UTC) #13
sahel
I merged the patch with the conflicting one. https://codereview.chromium.org/2250233002/diff/1/third_party/WebKit/public/platform/WebInputEvent.h File third_party/WebKit/public/platform/WebInputEvent.h (right): https://codereview.chromium.org/2250233002/diff/1/third_party/WebKit/public/platform/WebInputEvent.h#newcode263 third_party/WebKit/public/platform/WebInputEvent.h:263: static ...
4 years, 4 months ago (2016-08-17 22:08:16 UTC) #16
mustaq
On 2016/08/17 22:08:16, sahel wrote: > I merged the patch with the conflicting one. > ...
4 years, 4 months ago (2016-08-23 18:29:47 UTC) #24
sahel
On 2016/08/23 18:29:47, mustaq wrote: > On 2016/08/17 22:08:16, sahel wrote: > > I merged ...
4 years, 4 months ago (2016-08-23 18:37:21 UTC) #27
dtapuska
On 2016/08/23 at 18:37:21, sahel wrote: > On 2016/08/23 18:29:47, mustaq wrote: > > On ...
4 years, 4 months ago (2016-08-23 19:04:59 UTC) #28
mustaq
https://codereview.chromium.org/2250233002/diff/140001/content/browser/android/content_view_core_impl.cc File content/browser/android/content_view_core_impl.cc (right): https://codereview.chromium.org/2250233002/diff/140001/content/browser/android/content_view_core_impl.cc#newcode991 content/browser/android/content_view_core_impl.cc:991: blink::WebMouseEvent::ButtonNone, Looks like you will need to rebase again ...
4 years, 4 months ago (2016-08-23 20:13:22 UTC) #29
mustaq
On 2016/08/23 20:13:22, mustaq wrote: > https://codereview.chromium.org/2250233002/diff/140001/content/browser/android/content_view_core_impl.cc > File content/browser/android/content_view_core_impl.cc (right): > > https://codereview.chromium.org/2250233002/diff/140001/content/browser/android/content_view_core_impl.cc#newcode991 > ...
4 years, 4 months ago (2016-08-23 20:35:23 UTC) #32
sahel
skyostil@chromium.org: Please review changes in content/browser/android/content_view_core_impl.cc sdefresne@chromium.org: Please review changes in components/test_runner/test_plugin.cc tdresser@chromium.org: Please review ...
4 years, 4 months ago (2016-08-23 20:52:36 UTC) #34
tdresser
content/browser/renderer_host/render_widget_host* LGTM.
4 years, 4 months ago (2016-08-24 12:56:28 UTC) #35
Sami
content/browser/android/content_view_core_impl.cc lgtm.
4 years, 4 months ago (2016-08-24 13:52:08 UTC) #36
sahel
dpranke@chromium.org: Please review changes in
4 years, 4 months ago (2016-08-24 14:34:26 UTC) #40
Dirk Pranke
lgtm
4 years, 4 months ago (2016-08-24 18:03:05 UTC) #41
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/2250233002/140001
4 years, 4 months ago (2016-08-24 19:04:53 UTC) #43
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/267957)
4 years, 4 months ago (2016-08-24 22:30:50 UTC) #45
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/2250233002/140001
4 years, 3 months ago (2016-08-25 16:54:28 UTC) #47
commit-bot: I haz the power
Committed patchset #5 (id:140001)
4 years, 3 months ago (2016-08-25 23:21:08 UTC) #49
commit-bot: I haz the power
4 years, 3 months ago (2016-08-25 23:23:22 UTC) #51
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/df93225cc0d68727634f91d40e17a9cbe881aa1c
Cr-Commit-Position: refs/heads/master@{#414580}

Powered by Google App Engine
This is Rietveld 408576698