Index: Source/modules/mediastream/RTCDataChannel.h |
diff --git a/Source/modules/mediastream/RTCDataChannel.h b/Source/modules/mediastream/RTCDataChannel.h |
index 4dccf80587eaa9a5c709e36724e4c4bea20b51be..37004db8189f2161308ecf432b6ee32ae344e8d5 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(); |