Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Unified Diff: content/child/websocket_bridge.cc

Issue 304093003: Support recovery from SSL errors for new WebSocket implementation (Closed) Base URL: http://git.chromium.org/chromium/src.git@master-for-pool-throttling
Patch Set: clang compile fix. Also lint & format cleanups. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/websocket_bridge.cc
diff --git a/content/child/websocket_bridge.cc b/content/child/websocket_bridge.cc
index a213bd77b634ef4a56c68004a80e09dbc65f406c..5b327024313893d60d5789cdedf465720a96f66e 100644
--- a/content/child/websocket_bridge.cc
+++ b/content/child/websocket_bridge.cc
@@ -227,11 +227,8 @@ void WebSocketBridge::connect(
<< JoinString(protocols_to_pass, ", ") << "), "
<< origin_to_pass.string() << ")";
- ChildThread::current()->Send(
- new WebSocketHostMsg_AddChannelRequest(channel_id_,
- url,
- protocols_to_pass,
- origin_to_pass));
+ ChildThread::current()->Send(new WebSocketHostMsg_AddChannelRequest(
+ channel_id_, url, protocols_to_pass, origin_to_pass, render_frame_id_));
}
void WebSocketBridge::send(bool fin,

Powered by Google App Engine
This is Rietveld 408576698