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

Side by Side Diff: tools/dom/idl/dart/dart.idl

Issue 12077039: Adding supported checks for WebGL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
OLDNEW
1 // This file introduces / supplements and forces Dart declarations. 1 // This file introduces / supplements and forces Dart declarations.
2 2
3 [Supplemental, 3 [Supplemental,
4 Constructor] 4 Constructor]
5 interface AudioContext {}; 5 interface AudioContext {};
6 6
7 [Supplemental] 7 [Supplemental]
8 interface Document { 8 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
(...skipping 26 matching lines...) Expand all
37 37
38 [Supplemental] 38 [Supplemental]
39 interface Console { 39 interface Console {
40 [Suppressed] void assert(in boolean condition); 40 [Suppressed] void assert(in boolean condition);
41 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ; 41 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ;
42 }; 42 };
43 43
44 interface HTMLCanvasElement { 44 interface HTMLCanvasElement {
45 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException); 45 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException);
46 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullStr ing,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float quality) raises(DOMException); 46 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullStr ing,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float quality) raises(DOMException);
47
48 [Suppressed] DOMObject getContext([Optional=DefaultIsUndefined] in DOMString c ontextId);
49 [Custom] CanvasRenderingContext getContext([Optional=DefaultIsUndefined] in DO MString contextId, [Optional] in Dictionary attrs);
sra1 2013/01/29 02:17:34 Drop the [Optional=DefaultIsUndefined] The generat
blois 2013/01/29 21:50:08 Done.
47 }; 50 };
48 51
49 [Supplemental] 52 [Supplemental]
50 interface HTMLOptionsCollection { 53 interface HTMLOptionsCollection {
51 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l ong before); 54 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l ong before);
52 }; 55 };
53 56
54 [Supplemental] 57 [Supplemental]
55 interface HTMLSelectElement { 58 interface HTMLSelectElement {
56 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before); 59 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before);
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 [Suppressed] boolean send(in DOMString data) raises(DOMException); 340 [Suppressed] boolean send(in DOMString data) raises(DOMException);
338 341
339 [Custom] void send(DOMString data) raises(DOMException); 342 [Custom] void send(DOMString data) raises(DOMException);
340 [Custom] void send(Blob data) raises(DOMException); 343 [Custom] void send(Blob data) raises(DOMException);
341 [Custom] void send(ArrayBuffer data) raises(DOMException); 344 [Custom] void send(ArrayBuffer data) raises(DOMException);
342 [Custom] void send(ArrayBufferView data) raises(DOMException); 345 [Custom] void send(ArrayBufferView data) raises(DOMException);
343 }; 346 };
344 347
345 [Suppressed] 348 [Suppressed]
346 interface Entity {}; 349 interface Entity {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698