Index: Source/modules/websockets/DOMWebSocket.h |
diff --git a/Source/modules/websockets/DOMWebSocket.h b/Source/modules/websockets/DOMWebSocket.h |
index c8b8f3b09d420abb56b2f7ad1146d645b388ee7a..48ab9660d0994b1606448c24f46c026832f6429f 100644 |
--- a/Source/modules/websockets/DOMWebSocket.h |
+++ b/Source/modules/websockets/DOMWebSocket.h |
@@ -46,6 +46,8 @@ |
namespace blink { |
class Blob; |
+class DOMArrayBuffer; |
+class DOMArrayBufferView; |
class ExceptionState; |
class DOMWebSocket : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<DOMWebSocket>, public EventTargetWithInlineData, public ActiveDOMObject, public WebSocketChannelClient { |
@@ -72,8 +74,8 @@ public: |
void connect(const String& url, const Vector<String>& protocols, ExceptionState&); |
void send(const String& message, ExceptionState&); |
- void send(ArrayBuffer*, ExceptionState&); |
- void send(ArrayBufferView*, ExceptionState&); |
+ void send(DOMArrayBuffer*, ExceptionState&); |
+ void send(DOMArrayBufferView*, ExceptionState&); |
void send(Blob*, ExceptionState&); |
// To distinguish close method call with the code parameter from one |