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

Unified Diff: tools/dom/scripts/htmlrenamer.py

Issue 2883623004: fix KeyEvent and KeyboardEvent (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 side-by-side diff with in-line comments
Download patch
Index: tools/dom/scripts/htmlrenamer.py
diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
index b9b75eaeb9d4cd842d796815e98b76130d0c8fa2..850b022e508c6e3deb1cc751f0df4069474cf477 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -397,14 +397,16 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
'Touch.radiusX',
'Touch.radiusY',
'TouchEvent.initTouchEvent',
- 'UIEvent.charCode',
'UIEvent.initUIEvent',
- 'UIEvent.keyCode',
'UIEvent.layerX',
'UIEvent.layerY',
'UIEvent.pageX',
'UIEvent.pageY',
'UIEvent.which',
+ 'KeyboardEvent.charCode',
+ 'KeyboardEvent.keyCode',
+ 'KeyboardEvent.which',
+
'WheelEvent.initWebKitWheelEvent',
'WheelEvent.deltaX',
'WheelEvent.deltaY',
@@ -782,9 +784,6 @@ removed_html_members = monitored.Set('htmlrenamer.removed_html_members', [
'HTMLUListElement.compact',
'HTMLUListElement.type',
'IDBDatabase.transaction', # We do this in a template without the generated implementation at all.
- 'KeyboardEvent.charCode',
- 'KeyboardEvent.keyCode',
- 'KeyboardEvent.which',
'Location.valueOf',
'MessageEvent.data',
'MessageEvent.ports',

Powered by Google App Engine
This is Rietveld 408576698