| Index: Source/modules/websockets/WebSocket.cpp
|
| diff --git a/Source/modules/websockets/WebSocket.cpp b/Source/modules/websockets/WebSocket.cpp
|
| index 5f4617538711a4378cb11722f8d29c61d8cc9e38..fddb9a25cb07fe0de25d747d990d93a8220eaa02 100644
|
| --- a/Source/modules/websockets/WebSocket.cpp
|
| +++ b/Source/modules/websockets/WebSocket.cpp
|
| @@ -237,10 +237,12 @@ WebSocket::WebSocket(ExecutionContext* context)
|
| , m_eventQueue(EventQueue::create(this))
|
| {
|
| ScriptWrappable::init(this);
|
| + fprintf(stderr, "WebSocket() %ld %p\n", pthread_self(), this);
|
| }
|
|
|
| WebSocket::~WebSocket()
|
| {
|
| + fprintf(stderr, "~WebSocket() %ld %p\n", pthread_self(), this);
|
| ASSERT(!m_channel);
|
| }
|
|
|
|
|