| Index: content/browser/renderer_host/websocket_host.h
|
| diff --git a/content/browser/renderer_host/websocket_host.h b/content/browser/renderer_host/websocket_host.h
|
| index adbe3b9cf7e0095dc2cf01c79c611871878e8f69..3488ef06b522de65228c176045d349126273952b 100644
|
| --- a/content/browser/renderer_host/websocket_host.h
|
| +++ b/content/browser/renderer_host/websocket_host.h
|
| @@ -18,6 +18,7 @@
|
| #include "content/common/websocket.h"
|
|
|
| class GURL;
|
| +struct WebSocketHostMsg_AddChannelRequest_Params;
|
|
|
| namespace url {
|
| class Origin;
|
| @@ -66,15 +67,13 @@ class CONTENT_EXPORT WebSocketHost {
|
| // Handlers for each message type, dispatched by OnMessageReceived(), as
|
| // defined in content/common/websocket_messages.h
|
|
|
| - void OnAddChannelRequest(const GURL& socket_url,
|
| - const std::vector<std::string>& requested_protocols,
|
| - const url::Origin& origin,
|
| - const std::string& user_agent_override,
|
| - int render_frame_id);
|
| + void OnAddChannelRequest(
|
| + const WebSocketHostMsg_AddChannelRequest_Params& request);
|
|
|
| void AddChannel(const GURL& socket_url,
|
| const std::vector<std::string>& requested_protocols,
|
| const url::Origin& origin,
|
| + const GURL& first_party_for_cookies,
|
| const std::string& user_agent_override,
|
| int render_frame_id);
|
|
|
|
|