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

Side by Side Diff: third_party/WebKit/Source/core/events/UIEventInit.idl

Issue 2855613002: Removed |which| from KeyboardEvent and MouseEvent. (Closed)
Patch Set: Created 3 years, 7 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // https://w3c.github.io/uievents/#idl-def-UIEventInit 5 // https://w3c.github.io/uievents/#idl-def-UIEventInit
6 6
7 dictionary UIEventInit : EventInit { 7 dictionary UIEventInit : EventInit {
8 Window? view = null; 8 Window? view = null;
9 long detail = 0; 9 long detail = 0;
10 unsigned long which = 0;
dtapuska 2017/05/09 21:22:37 Shouldn't the constructor of the UIEvent now store
use mustaq_at_chromium.org 2017/05/10 17:48:35 The problem is that KeyboardEvent.which() ultimate
use mustaq_at_chromium.org 2017/05/11 20:47:46 As discussed offline, I will bring back the UIEven
10 InputDeviceCapabilities? sourceCapabilities = null; 11 InputDeviceCapabilities? sourceCapabilities = null;
11 }; 12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698