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

Unified Diff: lib/html/scripts/htmlrenamer.py

Issue 11098052: Make WheelEvent.delta{X,Y} return num, not int. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
« no previous file with comments | « lib/html/idl/dart/dart.idl ('k') | lib/html/templates/html/impl/impl_WheelEvent.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/htmlrenamer.py
diff --git a/lib/html/scripts/htmlrenamer.py b/lib/html/scripts/htmlrenamer.py
index 55aca937e29c9f166ca729b354add405673f606a..ee7892f19e7fe664566c58e3bf150edd7f883c95 100644
--- a/lib/html/scripts/htmlrenamer.py
+++ b/lib/html/scripts/htmlrenamer.py
@@ -36,14 +36,14 @@ _private_html_members = set([
'Document.createEvent',
'Document.createTextNode',
'Document.createTouchList',
+ 'DocumentFragment.querySelector',
+ 'DocumentFragment.querySelectorAll',
'Document.getElementById',
'Document.getElementsByClassName',
'Document.getElementsByName',
'Document.getElementsByTagName',
'Document.querySelector',
'Document.querySelectorAll',
- 'DocumentFragment.querySelector',
- 'DocumentFragment.querySelectorAll',
'Element.childElementCount',
'Element.children',
'Element.className',
@@ -61,6 +61,7 @@ _private_html_members = set([
'EventTarget.addEventListener',
'EventTarget.dispatchEvent',
'EventTarget.removeEventListener',
+ 'LocalWindow.getComputedStyle',
'MouseEvent.initMouseEvent',
'Node.appendChild',
'Node.attributes',
@@ -73,13 +74,14 @@ _private_html_members = set([
'ShadowRoot.getElementById',
'ShadowRoot.getElementsByClassName',
'ShadowRoot.getElementsByTagName',
- 'Storage.length',
'Storage.clear',
'Storage.getItem',
'Storage.key',
+ 'Storage.length',
'Storage.removeItem',
'Storage.setItem',
- 'LocalWindow.getComputedStyle',
+ 'WheelEvent.wheelDeltaX',
+ 'WheelEvent.wheelDeltaY',
])
# Members from the standard dom that exist in the dart:html library with
@@ -268,6 +270,7 @@ _removed_html_members = set([
"LocalWindow.get:frames",
"LocalWindow.get:length",
"LocalWindow.webkitCancelRequestAnimationFrame",
+ "WheelEvent.wheelDelta",
])
class HtmlRenamer(object):
« no previous file with comments | « lib/html/idl/dart/dart.idl ('k') | lib/html/templates/html/impl/impl_WheelEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698