Lines Matching defs:Bridge

59 typedef WorkerThreadableWebSocketChannel::Bridge Bridge;
113 : m_bridge(new Bridge(client, workerGlobalScope))
188 Peer::Peer(Bridge* bridge, WorkerLoaderProxy& loaderProxy, ThreadableWebSocketChannelSyncHelper* syncHelper)
277 static void workerGlobalScopeDidConnect(ExecutionContext* context, Bridge* bridge, const String& subprotocol, const String& extensions)
290 static void workerGlobalScopeDidReceiveMessage(ExecutionContext* context, Bridge* bridge, const String& message)
303 static void workerGlobalScopeDidReceiveBinaryData(ExecutionContext* context, Bridge* bridge, PassOwnPtr<Vector<char> > binaryData)
316 static void workerGlobalScopeDidConsumeBufferedAmount(ExecutionContext* context, Bridge* bridge, unsigned long consumed)
329 static void workerGlobalScopeDidStartClosingHandshake(ExecutionContext* context, Bridge* bridge)
342 static void workerGlobalScopeDidClose(ExecutionContext* context, Bridge* bridge, WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
359 static void workerGlobalScopeDidReceiveMessageError(ExecutionContext* context, Bridge* bridge)
380 Bridge::Bridge(WebSocketChannelClient* client, WorkerGlobalScope& workerGlobalScope)
389 Bridge::~Bridge()
394 void Bridge::initialize(const String& sourceURL, unsigned lineNumber)
402 bool Bridge::connect(const KURL& url, const String& protocol)
413 void Bridge::send(const String& message)
419 void Bridge::send(const ArrayBuffer& binaryData, unsigned byteOffset, unsigned byteLength)
430 void Bridge::send(PassRefPtr<BlobDataHandle> data)
436 void Bridge::close(int code, const String& reason)
442 void Bridge::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber)
448 void Bridge::disconnect()
465 bool Bridge::waitForMethodCompletion(PassOwnPtr<ExecutionContextTask> task)
480 void Bridge::trace(Visitor* visitor)