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

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

Issue 12597003: Revert "Update context2d.arc to take optional anticlockwise parameter" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « tests/html/canvasrenderingcontext2d_test.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 // 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 [Suppressed, StrictTypeChecking, Custom] void getTexParameter(); 131 [Suppressed, StrictTypeChecking, Custom] void getTexParameter();
132 132
133 [Custom] any getUniform(in WebGLProgram program, in WebGLUniformLocation locat ion) raises(DOMException); 133 [Custom] any getUniform(in WebGLProgram program, in WebGLUniformLocation locat ion) raises(DOMException);
134 [Suppressed, StrictTypeChecking, Custom] void getUniform(); 134 [Suppressed, StrictTypeChecking, Custom] void getUniform();
135 135
136 [Custom] any getVertexAttrib(in unsigned long index, in unsigned long pname) r aises(DOMException); 136 [Custom] any getVertexAttrib(in unsigned long index, in unsigned long pname) r aises(DOMException);
137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); 137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib();
138 }; 138 };
139 139
140 [Supplemental] 140 [Supplemental]
141 interface CanvasRenderingContext2D {
142 [Suppressed] any arc( float x, float y, float radius, float startAngle, float endAngle, boolean anticlockwise);
143 [Custom] void arc( float x, float y, float radius, float startAngle, flo at endAngle, [Optional] boolean anticlockwise);
144 };
145
146 [Supplemental]
147 interface CSSStyleDeclaration { 141 interface CSSStyleDeclaration {
148 void setProperty(in DOMString propertyName, in DOMString value, [Optional] in DOMString priority); 142 void setProperty(in DOMString propertyName, in DOMString value, [Optional] in DOMString priority);
149 [DartName=_getPropertyValue] DOMString getPropertyValue(in DOMString propertyN ame); 143 [DartName=_getPropertyValue] DOMString getPropertyValue(in DOMString propertyN ame);
150 }; 144 };
151 145
152 [Supplemental, 146 [Supplemental,
153 Constructor(in long length)] // Add constructor signature. 147 Constructor(in long length)] // Add constructor signature.
154 interface ArrayBuffer { 148 interface ArrayBuffer {
155 }; 149 };
156 [Supplemental] 150 [Supplemental]
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 [DartName=upperBound_] static IDBKeyRange upperBound(in any bound, [Optional] in boolean open) raises (IDBDatabaseException); 258 [DartName=upperBound_] static IDBKeyRange upperBound(in any bound, [Optional] in boolean open) raises (IDBDatabaseException);
265 [DartName=bound_] static IDBKeyRange bound(in any lower, in any upper, [Option al] in boolean lowerOpen, [Optional] in boolean upperOpen) raises (IDBDatabaseEx ception); 259 [DartName=bound_] static IDBKeyRange bound(in any lower, in any upper, [Option al] in boolean lowerOpen, [Optional] in boolean upperOpen) raises (IDBDatabaseEx ception);
266 }; 260 };
267 261
268 interface EntrySync { 262 interface EntrySync {
269 // Native implementation is declared to return EntrySync. 263 // Native implementation is declared to return EntrySync.
270 [Suppressed] DirectoryEntrySync getParent(); 264 [Suppressed] DirectoryEntrySync getParent();
271 EntrySync getParent(); 265 EntrySync getParent();
272 }; 266 };
273 267
268
274 [Supplemental, 269 [Supplemental,
275 CustomConstructor, 270 CustomConstructor,
276 Constructor(in Array blobParts, 271 Constructor(in Array blobParts,
277 [Optional] in DOMString type, [Optional] in DOMString endings) 272 [Optional] in DOMString type, [Optional] in DOMString endings)
278 ] 273 ]
279 interface Blob { 274 interface Blob {
280 }; 275 };
281 276
282 [Supplemental, 277 [Supplemental,
283 Constructor(float x, float y) 278 Constructor(float x, float y)
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 [Conditional=BLOB, Custom] void send(in Blob data) 350 [Conditional=BLOB, Custom] void send(in Blob data)
356 raises(DOMException); 351 raises(DOMException);
357 [Custom] void send(in Document data) 352 [Custom] void send(in Document data)
358 raises(DOMException); 353 raises(DOMException);
359 [Custom] void send([StrictTypeChecking] in DOMString data) 354 [Custom] void send([StrictTypeChecking] in DOMString data)
360 raises(DOMException); 355 raises(DOMException);
361 [Custom] void send(in DOMFormData data) 356 [Custom] void send(in DOMFormData data)
362 raises(DOMException); 357 raises(DOMException);
363 }; 358 };
364 359
360
365 [Suppressed] 361 [Suppressed]
366 interface Entity {}; 362 interface Entity {};
OLDNEW
« no previous file with comments | « tests/html/canvasrenderingcontext2d_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698