Searched defs:Bridge (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWorkerThreadableWebSocketChannel.h131 // Bridge for Peer. Running on the worker thread.
132 class Bridge : public RefCounted<Bridge> { class in class:WebCore::WorkerThreadableWebSocketChannel
134 static PassRefPtr<Bridge> create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerGlobalScope> workerGlobalScope, const String& taskMode)
136 return adoptRef(new Bridge(workerClientWrapper, workerGlobalScope, taskMode));
138 ~Bridge();
153 using RefCounted<Bridge>::ref;
154 using RefCounted<Bridge>::deref;
157 Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, PassRefPtr<WorkerGlobalScope>, const String& taskMode);
159 static void setWebSocketChannel(ExecutionContext*, Bridge* thisPt
[all...]
H A DWorkerThreadableWebSocketChannel.cpp56 , m_bridge(Bridge::create(m_workerClientWrapper, m_workerGlobalScope, taskMode))
369 WorkerThreadableWebSocketChannel::Bridge::Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerGlobalScope> workerGlobalScope, const String& taskMode) function in class:WebCore::WorkerThreadableWebSocketChannel::Bridge
379 WorkerThreadableWebSocketChannel::Bridge::~Bridge()
396 // If Bridge::initialize() quitted earlier, we need to kick mainThreadDestroy() to delete the peer.
418 void WorkerThreadableWebSocketChannel::Bridge::mainThreadInitialize(ExecutionContext* context, WorkerLoaderProxy* loaderProxy, PassRefPtr<ThreadableWebSocketChannelClientWrapper> prpClientWrapper, const String& taskMode, const String& sourceURL, unsigned lineNumber)
434 void WorkerThreadableWebSocketChannel::Bridge::initialize(const String& sourceURL, unsigned lineNumber)
438 RefPtr<Bridge> protect(this);
440 createCallbackTask(&Bridge
[all...]

Completed in 1379 milliseconds