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

Unified Diff: lib/html/templates/html/interface/interface_WheelEvent.darttemplate

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
Index: lib/html/templates/html/interface/interface_WheelEvent.darttemplate
diff --git a/lib/html/templates/html/interface/interface_WheelEvent.darttemplate b/lib/html/templates/html/interface/interface_WheelEvent.darttemplate
index d623c4c0fe8122f5abf4a17c37485562d0ab9360..1966c897183539f277ff26647a760da38d2bdb6b 100644
--- a/lib/html/templates/html/interface/interface_WheelEvent.darttemplate
+++ b/lib/html/templates/html/interface/interface_WheelEvent.darttemplate
@@ -6,6 +6,12 @@ $!COMMENT
abstract class $ID$EXTENDS {
$!MEMBERS
+ /** @domName WheelEvent.deltaX */
+ abstract num get deltaX;
+
+ /** @domName WheelEvent.deltaY */
+ abstract num get deltaY;
+
/** @domName WheelEvent.deltaMode */
- int get deltaMode;
+ abstract int get deltaMode;
}
« lib/html/idl/dart/dart.idl ('K') | « lib/html/templates/html/impl/impl_WheelEvent.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698