OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:didReceiveFlowControl
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebSocketHandleClient.h
74
virtual void
didReceiveFlowControl
(WebSocketHandle*, int64_t quota) = 0;
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.h
138
virtual void
didReceiveFlowControl
(blink::WebSocketHandle*, int64_t quota) OVERRIDE;
NewWebSocketChannelImpl.cpp
455
void NewWebSocketChannelImpl::
didReceiveFlowControl
(WebSocketHandle* handle, int64_t quota)
457
WTF_LOG(Network, "NewWebSocketChannelImpl %p
didReceiveFlowControl
(%p, %ld)", this, handle, static_cast<long>(quota));
/external/chromium_org/content/child/
websocket_bridge.cc
69
IPC_MESSAGE_HANDLER(WebSocketMsg_FlowControl,
DidReceiveFlowControl
)
166
void WebSocketBridge::
DidReceiveFlowControl
(int64_t quota) {
167
DVLOG(1) << "WebSocketBridge::
DidReceiveFlowControl
(" << quota << ")";
171
client_->
didReceiveFlowControl
(this, quota);
Completed in 489 milliseconds