OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebSocketChannelClient
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannelClient.h
41
class
WebSocketChannelClient
: public GarbageCollectedMixin {
43
virtual ~
WebSocketChannelClient
() { }
58
WebSocketChannelClient
() { }
WebSocketChannel.h
45
class
WebSocketChannelClient
;
54
static WebSocketChannel* create(ExecutionContext*,
WebSocketChannelClient
*);
WorkerThreadableWebSocketChannel.h
36
#include "modules/websockets/
WebSocketChannelClient
.h"
58
static WebSocketChannel* create(WorkerGlobalScope& workerGlobalScope,
WebSocketChannelClient
* client, const String& sourceURL, unsigned lineNumber)
83
class Peer FINAL : public GarbageCollectedFinalized<Peer>, public
WebSocketChannelClient
{
108
//
WebSocketChannelClient
functions.
130
Bridge(
WebSocketChannelClient
*, WorkerGlobalScope&);
145
WebSocketChannelClient
* client() { return m_client; }
153
Member<
WebSocketChannelClient
> m_client;
161
WorkerThreadableWebSocketChannel(WorkerGlobalScope&,
WebSocketChannelClient
*, const String& sourceURL, unsigned lineNumber);
MainThreadWebSocketChannel.h
57
class
WebSocketChannelClient
;
66
static MainThreadWebSocketChannel* create(Document* document,
WebSocketChannelClient
* client, const String& sourceURL = String(), unsigned lineNumber = 0)
103
MainThreadWebSocketChannel(Document*,
WebSocketChannelClient
*, const String&, unsigned);
205
Member<
WebSocketChannelClient
> m_client;
WebSocketChannel.cpp
43
#include "modules/websockets/
WebSocketChannelClient
.h"
49
WebSocketChannel* WebSocketChannel::create(ExecutionContext* context,
WebSocketChannelClient
* client)
NewWebSocketChannelImpl.h
68
static NewWebSocketChannelImpl* create(ExecutionContext* context,
WebSocketChannelClient
* client, const String& sourceURL = String(), unsigned lineNumber = 0, WebSocketHandle *handle = 0)
124
NewWebSocketChannelImpl(ExecutionContext*,
WebSocketChannelClient
*, const String&, unsigned, WebSocketHandle*);
168
Member<
WebSocketChannelClient
> m_client;
DOMWebSocket.h
38
#include "modules/websockets/
WebSocketChannelClient
.h"
51
class DOMWebSocket : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<DOMWebSocket>, public EventTargetWithInlineData, public ActiveDOMObject, public
WebSocketChannelClient
{
116
//
WebSocketChannelClient
functions.
185
virtual WebSocketChannel* createChannel(ExecutionContext* context,
WebSocketChannelClient
* client)
WorkerThreadableWebSocketChannel.cpp
112
WorkerThreadableWebSocketChannel::WorkerThreadableWebSocketChannel(WorkerGlobalScope& workerGlobalScope,
WebSocketChannelClient
* client, const String& sourceURL, unsigned lineNumber)
342
static void workerGlobalScopeDidClose(ExecutionContext* context, Bridge* bridge,
WebSocketChannelClient
::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
377
WebSocketChannelClient
::trace(visitor);
380
Bridge::Bridge(
WebSocketChannelClient
* client, WorkerGlobalScope& workerGlobalScope)
NewWebSocketChannelImpl.cpp
46
#include "modules/websockets/
WebSocketChannelClient
.h"
112
NewWebSocketChannelImpl::NewWebSocketChannelImpl(ExecutionContext* context,
WebSocketChannelClient
* client, const String& sourceURL, unsigned lineNumber, WebSocketHandle *handle)
391
WebSocketChannelClient
* client = m_client;
393
WebSocketChannelClient
::ClosingHandshakeCompletionStatus status =
394
wasClean ?
WebSocketChannelClient
::ClosingHandshakeComplete :
WebSocketChannelClient
::ClosingHandshakeIncomplete;
DOMWebSocketTest.cpp
77
virtual WebSocketChannel* createChannel(ExecutionContext*,
WebSocketChannelClient
*) OVERRIDE
120
m_websocket->didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, 1006, "");
298
m_websocket->didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, 1006, "");
467
m_websocket->didClose(
WebSocketChannelClient
::ClosingHandshakeComplete, 1000, String());
527
m_websocket->didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, 1006, "");
608
m_websocket->didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, 1006, "");
NewWebSocketChannelImplTest.cpp
13
#include "modules/websockets/
WebSocketChannelClient
.h"
42
class MockWebSocketChannelClient : public GarbageCollectedFinalized<MockWebSocketChannelClient>, public
WebSocketChannelClient
{
68
WebSocketChannelClient
::trace(visitor);
676
EXPECT_CALL(*channelClient(), didClose(
WebSocketChannelClient
::ClosingHandshakeComplete, WebSocketChannel::CloseEventCodeNormalClosure, String("close reason")));
702
EXPECT_CALL(*channelClient(), didClose(
WebSocketChannelClient
::ClosingHandshakeComplete, WebSocketChannel::CloseEventCodeNormalClosure, String("close reason")));
722
EXPECT_CALL(*channelClient(), didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, WebSocketChannel::CloseEventCodeAbnormalClosure, String()));
735
EXPECT_CALL(*channelClient(), didClose(
WebSocketChannelClient
::ClosingHandshakeIncomplete, WebSocketChannel::CloseEventCodeAbnormalClosure, String()));
MainThreadWebSocketChannel.cpp
48
#include "modules/websockets/
WebSocketChannelClient
.h"
63
MainThreadWebSocketChannel::MainThreadWebSocketChannel(Document* document,
WebSocketChannelClient
* client, const String& sourceURL, unsigned lineNumber)
282
WebSocketChannelClient
* client = m_client;
287
client->didClose(m_receivedClosingHandshake ?
WebSocketChannelClient
::ClosingHandshakeComplete :
WebSocketChannelClient
::ClosingHandshakeIncomplete, m_closeEventCode, m_closeEventReason);
[
all
...]
DOMWebSocket.cpp
692
WebSocketChannelClient
::trace(visitor);
/external/chromium_org/third_party/WebKit/Source/web/
WebSocketChannelClientProxy.h
8
#include "modules/websockets/
WebSocketChannelClient
.h"
18
//
WebSocketChannelClient
, but we cannot do that because
WebSocketChannelClient
21
// from
WebSocketChannelClient
.
22
class WebSocketChannelClientProxy FINAL : public GarbageCollectedFinalized<WebSocketChannelClientProxy>, public
WebSocketChannelClient
{
WebSocketImpl.h
34
#include "modules/websockets/
WebSocketChannelClient
.h"
69
//
WebSocketChannelClient
methods proxied by WebSocketChannelClientProxy.
76
void didClose(
WebSocketChannelClient
::ClosingHandshakeCompletionStatus, unsigned short code, const String& reason);
WebSocketImpl.cpp
202
void WebSocketImpl::didClose(
WebSocketChannelClient
::ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
Completed in 562 milliseconds