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

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

Issue 11828062: Updating IDL for WebSocket to cover latest IDL updates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « sdk/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 // 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 // Change the return type to Dictionary so that rows are exposed in the Dart 313 // Change the return type to Dictionary so that rows are exposed in the Dart
314 // API as a Maps, with the appropriate conversion in JavaScript. 314 // API as a Maps, with the appropriate conversion in JavaScript.
315 [Suppressed] DOMObject item(in unsigned long index); 315 [Suppressed] DOMObject item(in unsigned long index);
316 [Custom] Dictionary item(in unsigned long index); 316 [Custom] Dictionary item(in unsigned long index);
317 }; 317 };
318 318
319 [Supplemental] 319 [Supplemental]
320 interface WebSocket { 320 interface WebSocket {
321 // Suppress the default since it has non-standard return type and add 321 // Suppress the default since it has non-standard return type and add
322 // overrides. 322 // overrides.
323 [Suppressed] boolean send(in ArrayBuffer data) raises(DOMException);
324 [Suppressed] boolean send(in ArrayBufferView data) raises(DOMException);
325 [Suppressed] boolean send(in Blob data) raises(DOMException);
323 [Suppressed] boolean send(in DOMString data) raises(DOMException); 326 [Suppressed] boolean send(in DOMString data) raises(DOMException);
327
324 [Custom] void send(DOMString data) raises(DOMException); 328 [Custom] void send(DOMString data) raises(DOMException);
325 [Custom] void send(Blob data) raises(DOMException); 329 [Custom] void send(Blob data) raises(DOMException);
326 [Custom] void send(ArrayBuffer data) raises(DOMException); 330 [Custom] void send(ArrayBuffer data) raises(DOMException);
327 [Custom] void send(ArrayBufferView data) raises(DOMException); 331 [Custom] void send(ArrayBufferView data) raises(DOMException);
328 }; 332 };
329 333
330 [Suppressed] 334 [Suppressed]
331 interface Entity {}; 335 interface Entity {};
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698