Index: Source/modules/websockets/DOMWebSocket.h |
diff --git a/Source/modules/websockets/DOMWebSocket.h b/Source/modules/websockets/DOMWebSocket.h |
index e519d752a06c8386aa52f6eaa92ee390b572cba9..c7bcdd9c4000aed49544b25fa85cf412fbf48fd2 100644 |
--- a/Source/modules/websockets/DOMWebSocket.h |
+++ b/Source/modules/websockets/DOMWebSocket.h |
@@ -40,12 +40,13 @@ |
#include "platform/heap/Handle.h" |
#include "platform/weborigin/KURL.h" |
#include "wtf/Deque.h" |
-#include "wtf/Forward.h" |
#include "wtf/text/AtomicStringHash.h" |
namespace blink { |
class Blob; |
+class DOMArrayBuffer; |
+class DOMArrayBufferView; |
class ExceptionState; |
class DOMWebSocket : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<DOMWebSocket>, public EventTargetWithInlineData, public ActiveDOMObject, public WebSocketChannelClient { |
@@ -72,8 +73,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 |