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

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

Issue 11146025: Suppress creation of Entity class (it's not being used. We can un-suppress later (Closed) Base URL: http://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') | no next file » | 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 }; 383 };
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
394 [Suppressed]
395 interface Entity {};
393 } 396 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698