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

Unified Diff: content/common/websocket_messages.h

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/common/websocket_messages.h
diff --git a/content/common/websocket_messages.h b/content/common/websocket_messages.h
index 0ece66a81f0869b3bc4e8700a9d4b605b8947e11..d42b38bbf175d666fa3b7a273fda6b03dcd44660 100644
--- a/content/common/websocket_messages.h
+++ b/content/common/websocket_messages.h
@@ -58,10 +58,11 @@ IPC_STRUCT_TRAITS_END()
// The browser process will not send |channel_id| as-is to the remote server; it
// will try to use a short id on the wire. This saves the renderer from
// having to try to choose the ids cleverly.
-IPC_MESSAGE_ROUTED3(WebSocketHostMsg_AddChannelRequest,
+IPC_MESSAGE_ROUTED4(WebSocketHostMsg_AddChannelRequest,
GURL /* socket_url */,
std::vector<std::string> /* requested_protocols */,
- url::Origin /* origin */)
+ url::Origin /* origin */,
+ int /* render_frame_id */)
// WebSocket messages sent from the browser to the renderer.

Powered by Google App Engine
This is Rietveld 408576698