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

Unified Diff: modules/websockets/WebSocket.idl

Issue 19605006: Roll IDL to multivm@1316 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 5 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 | « modules/webmidi/NavigatorWebMIDI.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/websockets/WebSocket.idl
diff --git a/modules/websockets/WebSocket.idl b/modules/websockets/WebSocket.idl
index 0973a42047531b57fb6bea854fc844957fee8892..425ac96090bf24f2d700f2a653f7b579fe5c30e3 100644
--- a/modules/websockets/WebSocket.idl
+++ b/modules/websockets/WebSocket.idl
@@ -34,8 +34,8 @@
Constructor(DOMString url),
Constructor(DOMString url, sequence<DOMString> protocols),
Constructor(DOMString url, DOMString protocol),
- RaisesException,
- CallWith=ScriptExecutionContext,
+ ConstructorRaisesException,
+ ConstructorCallWith=ScriptExecutionContext,
EventTarget
] interface WebSocket {
readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
@@ -61,10 +61,10 @@
attribute DOMString binaryType;
- [RaisesException] boolean send(ArrayBuffer data);
- [RaisesException] boolean send(ArrayBufferView data);
- [RaisesException] boolean send(Blob data);
- [RaisesException] boolean send(DOMString data);
+ [RaisesException] void send(ArrayBuffer data);
+ [RaisesException] void send(ArrayBufferView data);
+ [RaisesException] void send(Blob data);
+ [RaisesException] void send(DOMString data);
[RaisesException] void close([Clamp] optional unsigned short code, optional DOMString reason);
« no previous file with comments | « modules/webmidi/NavigatorWebMIDI.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698