| Index: content/browser/renderer_host/websocket_host.cc
|
| diff --git a/content/browser/renderer_host/websocket_host.cc b/content/browser/renderer_host/websocket_host.cc
|
| index 685599d47fa1abf3f2d4f8baa41f17787ae92f02..1866b99fc36c803696d29a2307524e81aee21396 100644
|
| --- a/content/browser/renderer_host/websocket_host.cc
|
| +++ b/content/browser/renderer_host/websocket_host.cc
|
| @@ -518,7 +518,7 @@ void WebSocketHost::OnFlowControl(int64_t quota) {
|
| return;
|
| }
|
|
|
| - channel_->SendFlowControl(quota);
|
| + ignore_result(channel_->SendFlowControl(quota));
|
| }
|
|
|
| void WebSocketHost::OnDropChannel(bool was_clean,
|
| @@ -540,7 +540,7 @@ void WebSocketHost::OnDropChannel(bool was_clean,
|
|
|
| blob_sender_.reset();
|
| // TODO(yhirano): Handle |was_clean| appropriately.
|
| - channel_->StartClosingHandshake(code, reason);
|
| + ignore_result(channel_->StartClosingHandshake(code, reason));
|
| }
|
|
|
| void WebSocketHost::BlobSendComplete(int result) {
|
|
|