Chromium Code Reviews| Index: Source/modules/presentation/PresentationSession.idl |
| diff --git a/Source/modules/presentation/PresentationSession.idl b/Source/modules/presentation/PresentationSession.idl |
| index 8c942763ef22737a5cb17ec26fca1f6766f1c15e..682ec4d1d095a7b10ad911af6e74993ba2d619c1 100644 |
| --- a/Source/modules/presentation/PresentationSession.idl |
| +++ b/Source/modules/presentation/PresentationSession.idl |
| @@ -16,7 +16,9 @@ enum PresentationSessionState { |
| readonly attribute DOMString? id; |
| readonly attribute PresentationSessionState state; |
| - void postMessage(DOMString message); |
| + [RaisesException] void send(DOMString message); |
| + [RaisesException] void send(ArrayBuffer data); |
| + [RaisesException] void send(ArrayBufferView data); |
|
mlamouri (slow - plz ping)
2015/04/16 10:06:30
Could you add a TODO pointing to a bug for Blob su
USE s.singapati at gmail.com
2015/04/16 16:10:02
Done.
|
| void close(); |
| attribute EventHandler onmessage; |