Index: Source/modules/websockets/WorkerThreadableWebSocketChannel.h |
diff --git a/Source/modules/websockets/WorkerThreadableWebSocketChannel.h b/Source/modules/websockets/WorkerThreadableWebSocketChannel.h |
index 7ff72e6cd9162ea4092fdf1ee330f38d26084a20..c1b538112a5ad1b9720658e208f7989c78b0489d 100644 |
--- a/Source/modules/websockets/WorkerThreadableWebSocketChannel.h |
+++ b/Source/modules/websockets/WorkerThreadableWebSocketChannel.h |
@@ -85,8 +85,8 @@ public: |
virtual void close(int code, const String& reason) OVERRIDE; |
virtual void fail(const String& reason, MessageLevel, const String&, unsigned) OVERRIDE; |
virtual void disconnect() OVERRIDE; // Will suppress didClose(). |
- virtual void suspend() OVERRIDE; |
- virtual void resume() OVERRIDE; |
+ virtual void suspend() OVERRIDE { } |
+ virtual void resume() OVERRIDE { } |
virtual void trace(Visitor*) OVERRIDE; |
@@ -111,8 +111,6 @@ public: |
void close(int code, const String& reason); |
void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber); |
void disconnect(); |
- void suspend(); |
- void resume(); |
// WebSocketChannelClient functions. |
virtual void didConnect(const String& subprotocol, const String& extensions) OVERRIDE; |
@@ -153,8 +151,6 @@ private: |
void close(int code, const String& reason); |
void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber); |
void disconnect(); |
- void suspend(); |
- void resume(); |
private: |
Bridge(PassRefPtrWillBeRawPtr<ThreadableWebSocketChannelClientWrapper>, WorkerGlobalScope&); |