summaryrefslogtreecommitdiffstats
path: root/WebCore/websockets/WebSocketChannel.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/websockets/WebSocketChannel.h')
-rw-r--r--WebCore/websockets/WebSocketChannel.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/websockets/WebSocketChannel.h b/WebCore/websockets/WebSocketChannel.h
index 43d431a..a08e6bb 100644
--- a/WebCore/websockets/WebSocketChannel.h
+++ b/WebCore/websockets/WebSocketChannel.h
@@ -84,6 +84,10 @@ namespace WebCore {
bool processBuffer();
void resumeTimerFired(Timer<WebSocketChannel>* timer);
+#if ENABLE(INSPECTOR)
+ unsigned long identifier();
+#endif
+
ScriptExecutionContext* m_context;
WebSocketChannelClient* m_client;
WebSocketHandshake m_handshake;
@@ -96,6 +100,10 @@ namespace WebCore {
bool m_closed;
bool m_shouldDiscardReceivedData;
unsigned long m_unhandledBufferedAmount;
+
+#if ENABLE(INSPECTOR)
+ unsigned long m_identifier;
+#endif
};
} // namespace WebCore