Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1676)

Unified Diff: Source/modules/websockets/WebSocket.cpp

Issue 267323004: Oilpan: Move ThreadableWebSocketChannelClientWrapper to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698