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

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

Issue 14007012: Changes for the roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « no previous file | tools/dom/scripts/fremontcutbuilder.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 // 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 CustomConstructor, 266 CustomConstructor,
267 Constructor(in Array blobParts, 267 Constructor(in Array blobParts,
268 [Optional] in DOMString type, [Optional] in DOMString endings) 268 [Optional] in DOMString type, [Optional] in DOMString endings)
269 ] 269 ]
270 interface Blob { 270 interface Blob {
271 }; 271 };
272 272
273 [Supplemental, 273 [Supplemental,
274 Constructor(float x, float y) 274 Constructor(float x, float y)
275 ] 275 ]
276 interface WebKitPoint { 276 interface DOMPoint {
277 }; 277 };
278 278
279 [Supplemental, Callback] // Add missing Callback attribute. 279 [Supplemental, Callback] // Add missing Callback attribute.
280 interface VoidCallback { 280 interface VoidCallback {
281 }; 281 };
282 282
283 interface SVGNumber { 283 interface SVGNumber {
284 [StrictTypeChecking, Custom] attribute float value; 284 [StrictTypeChecking, Custom] attribute float value;
285 }; 285 };
286 286
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 [Custom] void send(in Document data) 348 [Custom] void send(in Document data)
349 raises(DOMException); 349 raises(DOMException);
350 [Custom] void send([StrictTypeChecking] in DOMString data) 350 [Custom] void send([StrictTypeChecking] in DOMString data)
351 raises(DOMException); 351 raises(DOMException);
352 [Custom] void send(in DOMFormData data) 352 [Custom] void send(in DOMFormData data)
353 raises(DOMException); 353 raises(DOMException);
354 }; 354 };
355 355
356 356
357 [Suppressed] 357 [Suppressed]
358 interface AbstractView {};
359
360
361 [Suppressed]
362 interface InjectedScriptHost {};
363
364
365 [Suppressed]
366 interface InspectorFrontendHost {};
367
368
369 [Suppressed]
370 interface JavaScriptCallFrame {};
371
372
373 [Suppressed]
374 interface ScriptProfile {};
375
376
377 [Suppressed]
378 interface ScriptProfileNode {};
379
380
381 [Suppressed]
358 interface Entity {}; 382 interface Entity {};
OLDNEW
« no previous file with comments | « no previous file | tools/dom/scripts/fremontcutbuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698