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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index cbf08c0ed688f99743fb11d2c1e31b54ed14fad7..1fab40f4397abbda98e24ecfa19a38fad90ccec6 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -320,7 +320,11 @@ interface SQLResultSetRowList {
interface WebSocket {
// Suppress the default since it has non-standard return type and add
// overrides.
+ [Suppressed] boolean send(in ArrayBuffer data) raises(DOMException);
+ [Suppressed] boolean send(in ArrayBufferView data) raises(DOMException);
+ [Suppressed] boolean send(in Blob data) raises(DOMException);
[Suppressed] boolean send(in DOMString data) raises(DOMException);
+
[Custom] void send(DOMString data) raises(DOMException);
[Custom] void send(Blob data) raises(DOMException);
[Custom] void send(ArrayBuffer data) raises(DOMException);
« 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