| Index: Source/modules/websockets/WorkerThreadableWebSocketChannel.h
|
| diff --git a/Source/modules/websockets/WorkerThreadableWebSocketChannel.h b/Source/modules/websockets/WorkerThreadableWebSocketChannel.h
|
| index 2c147b409e85abee5c54c4c2180302bbda096b6b..2628d3125a2c6f1c5f5a43102d744a5ed30eed83 100644
|
| --- a/Source/modules/websockets/WorkerThreadableWebSocketChannel.h
|
| +++ b/Source/modules/websockets/WorkerThreadableWebSocketChannel.h
|
| @@ -71,7 +71,7 @@ public:
|
| virtual ~WorkerThreadableWebSocketChannel();
|
|
|
| // WebSocketChannel functions.
|
| - virtual void connect(const KURL&, const String& protocol) OVERRIDE;
|
| + virtual bool connect(const KURL&, const String& protocol) OVERRIDE;
|
| virtual String subprotocol() OVERRIDE;
|
| virtual String extensions() OVERRIDE;
|
| virtual WebSocketChannel::SendResult send(const String& message) OVERRIDE;
|
| @@ -147,7 +147,7 @@ private:
|
| // sourceURLAtConnection and lineNumberAtConnection parameters may
|
| // be shown when the connection fails.
|
| void initialize(const String& sourceURLAtConnection, unsigned lineNumberAtConnection);
|
| - void connect(const KURL&, const String& protocol);
|
| + bool connect(const KURL&, const String& protocol);
|
| WebSocketChannel::SendResult send(const String& message);
|
| WebSocketChannel::SendResult send(const ArrayBuffer&, unsigned byteOffset, unsigned byteLength);
|
| WebSocketChannel::SendResult send(PassRefPtr<BlobDataHandle>);
|
|
|