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

Side by Side Diff: lib/html/idl/dart/dart.idl

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 ClientRectList implements sequence<ClientRect>; 5 ClientRectList implements sequence<ClientRect>;
6 CSSRuleList implements sequence<CSSRule>; 6 CSSRuleList implements sequence<CSSRule>;
7 CSSValueList implements sequence<CSSValue>; 7 CSSValueList implements sequence<CSSValue>;
8 DOMMimeTypeArray implements sequence<DOMMimeType>; 8 DOMMimeTypeArray implements sequence<DOMMimeType>;
9 DOMPluginArray implements sequence<DOMPlugin>; 9 DOMPluginArray implements sequence<DOMPlugin>;
10 EntryArray implements sequence<Entry>; 10 EntryArray implements sequence<Entry>;
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 } 384 }
385 385
386 module core { 386 module core {
387 [Supplemental, Callback] 387 [Supplemental, Callback]
388 interface RequestAnimationFrameCallback { 388 interface RequestAnimationFrameCallback {
389 // Webkit implements this as returning bool, but standard is void. 389 // Webkit implements this as returning bool, but standard is void.
390 [Suppressed] boolean handleEvent(in DOMTimeStamp time); 390 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
391 [Custom] void handleEvent(in DOMTimeStamp time); 391 [Custom] void handleEvent(in DOMTimeStamp time);
392 }; 392 };
393 } 393 }
394
395 module events {
396 [Supplemental]
397 interface WheelEvent {
398 [Suppressed] readonly attribute long wheelDelta;
399 [DartName=deltaX] readonly attribute long wheelDeltaX;
400 [DartName=deltaY] readonly attribute long wheelDeltaY;
401 };
402 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698