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 902664e909762ebd96dff94cb909cf0802ffd916..edd4d7665f92fb993c28c8621101cdd7bd399708 100644 |
--- a/content/browser/renderer_host/websocket_dispatcher_host.cc |
+++ b/content/browser/renderer_host/websocket_dispatcher_host.cc |
@@ -108,9 +108,10 @@ void WebSocketDispatcherHost::SendClosing(int routing_id) { |
} |
void WebSocketDispatcherHost::DoDropChannel(int routing_id, |
+ bool fail, |
uint16 code, |
const std::string& reason) { |
- SendOrDrop(new WebSocketMsg_DropChannel(routing_id, code, reason)); |
+ SendOrDrop(new WebSocketMsg_DropChannel(routing_id, fail, code, reason)); |
DeleteWebSocketHost(routing_id); |
} |