| Index: Source/modules/mediastream/RTCDataChannel.h
|
| diff --git a/Source/modules/mediastream/RTCDataChannel.h b/Source/modules/mediastream/RTCDataChannel.h
|
| index c2d39bf34f0c26e0f53ef815679119ea5dd400bd..b4391ad0b3ae99c4d6f49df5b3fab89547f92f34 100644
|
| --- a/Source/modules/mediastream/RTCDataChannel.h
|
| +++ b/Source/modules/mediastream/RTCDataChannel.h
|
| @@ -34,6 +34,8 @@
|
| namespace blink {
|
|
|
| class Blob;
|
| +class DOMArrayBuffer;
|
| +class DOMArrayBufferView;
|
| class ExceptionState;
|
| class RTCPeerConnection;
|
| class WebRTCDataChannelHandler;
|
| @@ -70,8 +72,8 @@ public:
|
| void setBinaryType(const String&, ExceptionState&);
|
|
|
| void send(const String&, ExceptionState&);
|
| - void send(PassRefPtr<ArrayBuffer>, ExceptionState&);
|
| - void send(PassRefPtr<ArrayBufferView>, ExceptionState&);
|
| + void send(PassRefPtr<DOMArrayBuffer>, ExceptionState&);
|
| + void send(PassRefPtr<DOMArrayBufferView>, ExceptionState&);
|
| void send(Blob*, ExceptionState&);
|
|
|
| void close();
|
|
|