Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 | 394 |
| 395 module events { | 395 module events { |
| 396 [Supplemental] | 396 [Supplemental] |
| 397 interface WheelEvent { | 397 interface WheelEvent { |
| 398 [Suppressed] readonly attribute long wheelDelta; | 398 [Suppressed] readonly attribute long wheelDelta; |
| 399 [DartName=deltaX] readonly attribute long wheelDeltaX; | 399 [DartName=_wheelDeltaX] readonly attribute long wheelDeltaX; |
| 400 [DartName=deltaY] readonly attribute long wheelDeltaY; | 400 [DartName=_wheelDeltaY] readonly attribute long wheelDeltaY; |
|
blois
2012/10/10 18:46:02
Can we not use htmlrenamer.py to make _wheelDeltaX
Anton Muhin
2012/10/11 13:04:06
Sorry, Pete, do you suggest to move the logic in t
| |
| 401 }; | 401 }; |
| 402 } | 402 } |
| OLD | NEW |