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

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

Issue 14050008: Remove BLOB conditional. (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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 }; 336 };
337 337
338 [Supplemental] 338 [Supplemental]
339 interface XMLHttpRequest { 339 interface XMLHttpRequest {
340 [Custom] void send() 340 [Custom] void send()
341 raises(DOMException); 341 raises(DOMException);
342 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually d eprecated. 342 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually d eprecated.
343 raises(DOMException); 343 raises(DOMException);
344 [Custom] void send(in ArrayBufferView data) 344 [Custom] void send(in ArrayBufferView data)
345 raises(DOMException); 345 raises(DOMException);
346 [Conditional=BLOB, Custom] void send(in Blob data) 346 [Custom] void send(in Blob data)
347 raises(DOMException); 347 raises(DOMException);
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
(...skipping 16 matching lines...) Expand all
373 [Suppressed] 373 [Suppressed]
374 interface ScriptProfile {}; 374 interface ScriptProfile {};
375 375
376 376
377 [Suppressed] 377 [Suppressed]
378 interface ScriptProfileNode {}; 378 interface ScriptProfileNode {};
379 379
380 380
381 [Suppressed] 381 [Suppressed]
382 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