| Index: content/browser/renderer_host/websocket_dispatcher_host.cc
|
| diff --git a/content/browser/renderer_host/websocket_dispatcher_host.cc b/content/browser/renderer_host/websocket_dispatcher_host.cc
|
| index e7049004b32fd4106d929b256f873fa1aca73e50..666e7df31fdbc5af74d6950702db7f5ad61a7503 100644
|
| --- a/content/browser/renderer_host/websocket_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/websocket_dispatcher_host.cc
|
| @@ -80,6 +80,8 @@ bool WebSocketDispatcherHost::OnMessageReceived(const IPC::Message& message) {
|
| switch (message.type()) {
|
| case WebSocketHostMsg_AddChannelRequest::ID:
|
| case WebSocketHostMsg_SendBlob::ID:
|
| + case WebSocketHostMsg_BinaryTypeChanged::ID:
|
| + case WebSocketHostMsg_BlobConfirmed::ID:
|
| case WebSocketMsg_SendFrame::ID:
|
| case WebSocketMsg_FlowControl::ID:
|
| case WebSocketMsg_DropChannel::ID:
|
| @@ -221,6 +223,13 @@ WebSocketHostState WebSocketDispatcherHost::BlobSendComplete(int routing_id) {
|
| return SendOrDrop(new WebSocketMsg_BlobSendComplete(routing_id));
|
| }
|
|
|
| +WebSocketHostState WebSocketDispatcherHost::BlobReceived(
|
| + int routing_id,
|
| + const std::string& uuid,
|
| + uint64_t size) {
|
| + return SendOrDrop(new WebSocketMsg_BlobReceived(routing_id, uuid, size));
|
| +}
|
| +
|
| WebSocketHostState WebSocketDispatcherHost::DoDropChannel(
|
| int routing_id,
|
| bool was_clean,
|
|
|