| Index: Source/modules/websockets/WebSocketChannel.cpp
|
| diff --git a/Source/modules/websockets/WebSocketChannel.cpp b/Source/modules/websockets/WebSocketChannel.cpp
|
| index a63f850628028f9053677070ac8dd054d4c6f024..06a94461598b70029b6925be721824e8872b31ff 100644
|
| --- a/Source/modules/websockets/WebSocketChannel.cpp
|
| +++ b/Source/modules/websockets/WebSocketChannel.cpp
|
| @@ -40,7 +40,7 @@
|
| #include "core/workers/WorkerThread.h"
|
| #include "modules/websockets/DocumentWebSocketChannel.h"
|
| #include "modules/websockets/WebSocketChannelClient.h"
|
| -#include "modules/websockets/WorkerThreadableWebSocketChannel.h"
|
| +#include "modules/websockets/WorkerWebSocketChannel.h"
|
|
|
| namespace blink {
|
|
|
| @@ -59,7 +59,7 @@ WebSocketChannel* WebSocketChannel::create(ExecutionContext* context, WebSocketC
|
|
|
| if (context->isWorkerGlobalScope()) {
|
| WorkerGlobalScope* workerGlobalScope = toWorkerGlobalScope(context);
|
| - return WorkerThreadableWebSocketChannel::create(*workerGlobalScope, client, sourceURL, lineNumber);
|
| + return WorkerWebSocketChannel::create(*workerGlobalScope, client, sourceURL, lineNumber);
|
| }
|
|
|
| Document* document = toDocument(context);
|
|
|