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

Issue 2855613002: Removed |which| from KeyboardEvent and MouseEvent. (Closed)

Created:
3 years, 7 months ago by mustaq
Modified:
3 years, 7 months ago
Reviewers:
dtapuska, foolip
CC:
chromium-reviews, blink-reviews, mac-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Removed |which| from KeyboardEvent and MouseEvent. Also changed the type of UIEvent.which to unsigned as per the spec. Blink intent thread: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/6V4iHkqZXvQ BUG=692717, 496400 Review-Url: https://codereview.chromium.org/2855613002 Cr-Commit-Position: refs/heads/master@{#474261} Committed: https://chromium.googlesource.com/chromium/src/+/cf13270c47f29b21ce7a8c937f598989cd66c840

Patch Set 1 #

Total comments: 5

Patch Set 2 : Dropped UIEventInit.which. #

Total comments: 2

Patch Set 3 : Removed FIXME, counters. Rebased. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+9 lines, -22 lines) Patch
M third_party/WebKit/LayoutTests/platform/mac/virtual/stable/webexposed/global-interface-listing-expected.txt View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/win/virtual/stable/webexposed/global-interface-listing-expected.txt View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/virtual/service-worker-navigation-preload-disabled/webexposed/global-interface-listing-expected.txt View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/UIEvent.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/UIEvent.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/UIEvent.idl View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/frame/UseCounter.h View 1 2 1 chunk +0 lines, -2 lines 0 comments Download

Messages

Total messages: 31 (17 generated)
use mustaq_at_chromium.org
ptal
3 years, 7 months ago (2017-05-09 21:12:47 UTC) #7
dtapuska
https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEvent.idl File third_party/WebKit/Source/core/events/UIEvent.idl (right): https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEvent.idl#newcode38 third_party/WebKit/Source/core/events/UIEvent.idl:38: [MeasureAs=UIEventWhich] readonly attribute unsigned long which; Do we anticipate ...
3 years, 7 months ago (2017-05-09 21:20:53 UTC) #8
dtapuska
https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEventInit.idl File third_party/WebKit/Source/core/events/UIEventInit.idl (right): https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEventInit.idl#newcode10 third_party/WebKit/Source/core/events/UIEventInit.idl:10: unsigned long which = 0; Shouldn't the constructor of ...
3 years, 7 months ago (2017-05-09 21:22:37 UTC) #9
use mustaq_at_chromium.org
https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEvent.idl File third_party/WebKit/Source/core/events/UIEvent.idl (right): https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEvent.idl#newcode38 third_party/WebKit/Source/core/events/UIEvent.idl:38: [MeasureAs=UIEventWhich] readonly attribute unsigned long which; On 2017/05/09 21:20:53, ...
3 years, 7 months ago (2017-05-10 17:48:35 UTC) #10
use mustaq_at_chromium.org
https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEventInit.idl File third_party/WebKit/Source/core/events/UIEventInit.idl (right): https://codereview.chromium.org/2855613002/diff/1/third_party/WebKit/Source/core/events/UIEventInit.idl#newcode10 third_party/WebKit/Source/core/events/UIEventInit.idl:10: unsigned long which = 0; On 2017/05/10 17:48:35, use ...
3 years, 7 months ago (2017-05-11 20:47:46 UTC) #12
dtapuska
https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl File third_party/WebKit/Source/core/events/UIEvent.idl (right): https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl#newcode38 third_party/WebKit/Source/core/events/UIEvent.idl:38: [MeasureAs=UIEventWhich] readonly attribute unsigned long which; Remove the measureAs
3 years, 7 months ago (2017-05-23 17:58:14 UTC) #17
mustaq
https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl File third_party/WebKit/Source/core/events/UIEvent.idl (right): https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl#newcode38 third_party/WebKit/Source/core/events/UIEvent.idl:38: [MeasureAs=UIEventWhich] readonly attribute unsigned long which; On 2017/05/23 17:58:14, ...
3 years, 7 months ago (2017-05-23 18:21:31 UTC) #18
dtapuska
On 2017/05/23 18:21:31, mustaq wrote: > https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl > File third_party/WebKit/Source/core/events/UIEvent.idl (right): > > https://codereview.chromium.org/2855613002/diff/20001/third_party/WebKit/Source/core/events/UIEvent.idl#newcode38 > ...
3 years, 7 months ago (2017-05-23 18:24:54 UTC) #19
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/2855613002/40001
3 years, 7 months ago (2017-05-23 18:26:03 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/445123)
3 years, 7 months ago (2017-05-23 18:34:20 UTC) #23
mustaq
foolip@: Need approval for global-interface-listing
3 years, 7 months ago (2017-05-23 19:19:41 UTC) #25
foolip
On 2017/05/23 19:19:41, mustaq wrote: > foolip@: Need approval for global-interface-listing lgtm
3 years, 7 months ago (2017-05-24 11:51:36 UTC) #26
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/2855613002/40001
3 years, 7 months ago (2017-05-24 12:27:26 UTC) #28
commit-bot: I haz the power
3 years, 7 months ago (2017-05-24 12:33:47 UTC) #31
Message was sent while issue was closed.
Committed patchset #3 (id:40001) as
https://chromium.googlesource.com/chromium/src/+/cf13270c47f29b21ce7a8c937f59...

Powered by Google App Engine
This is Rietveld 408576698