| Index: Source/modules/websockets/WebSocket.h
|
| diff --git a/Source/modules/websockets/WebSocket.h b/Source/modules/websockets/WebSocket.h
|
| index f1faefa7a95c7d114f248a0fa65b1e3e1b46f04f..1d1b31057b96ffe50da91038316cc133cc3fb6c4 100644
|
| --- a/Source/modules/websockets/WebSocket.h
|
| +++ b/Source/modules/websockets/WebSocket.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef WebSocket_h
|
| #define WebSocket_h
|
|
|
| +#include "bindings/v8/ScriptWrappable.h"
|
| #include "core/dom/ActiveDOMObject.h"
|
| #include "core/dom/EventListener.h"
|
| #include "core/dom/EventNames.h"
|
| @@ -47,7 +48,7 @@ namespace WebCore {
|
| class Blob;
|
| class WebSocketChannel;
|
|
|
| -class WebSocket : public RefCounted<WebSocket>, public EventTarget, public ActiveDOMObject, public WebSocketChannelClient {
|
| +class WebSocket : public RefCounted<WebSocket>, public ScriptWrappable, public EventTarget, public ActiveDOMObject, public WebSocketChannelClient {
|
| public:
|
| static const char* subProtocolSeperator();
|
| static PassRefPtr<WebSocket> create(ScriptExecutionContext*);
|
|
|