| Index: content/child/websocket_bridge.cc
|
| diff --git a/content/child/websocket_bridge.cc b/content/child/websocket_bridge.cc
|
| index 7cfff1ad50a942960024e79ac8d98377e363642d..c9f4696a3c0f497e074245b621dfa6a75ae44d3a 100644
|
| --- a/content/child/websocket_bridge.cc
|
| +++ b/content/child/websocket_bridge.cc
|
| @@ -206,6 +206,7 @@ void WebSocketBridge::DidStartClosingHandshake() {
|
| void WebSocketBridge::connect(const WebURL& url,
|
| const WebVector<WebString>& protocols,
|
| const WebSecurityOrigin& origin,
|
| + const WebURL& first_party_for_cookies,
|
| WebSocketHandleClient* client) {
|
| DCHECK_EQ(kInvalidChannelId, channel_id_);
|
| WebSocketDispatcher* dispatcher =
|
| @@ -222,7 +223,8 @@ void WebSocketBridge::connect(const WebURL& url,
|
| << origin.toString().utf8() << ")";
|
|
|
| ChildThreadImpl::current()->Send(new WebSocketHostMsg_AddChannelRequest(
|
| - channel_id_, url, protocols_to_pass, origin, render_frame_id_));
|
| + channel_id_, url, protocols_to_pass, origin, first_party_for_cookies,
|
| + render_frame_id_));
|
| }
|
|
|
| void WebSocketBridge::send(bool fin,
|
|
|