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

Unified Diff: content/child/websocket_bridge.cc

Issue 308513004: Pass render frame ID to WebSocketBridge (Chromium side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « content/child/websocket_bridge.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/websocket_bridge.cc
diff --git a/content/child/websocket_bridge.cc b/content/child/websocket_bridge.cc
index b88eef28db0c9ee3f3d81cdfbfa22aad7b8706bc..a213bd77b634ef4a56c68004a80e09dbc65f406c 100644
--- a/content/child/websocket_bridge.cc
+++ b/content/child/websocket_bridge.cc
@@ -44,7 +44,9 @@ const unsigned short kAbnormalShutdownOpCode = 1006;
} // namespace
WebSocketBridge::WebSocketBridge()
- : channel_id_(kInvalidChannelId), client_(NULL) {}
+ : channel_id_(kInvalidChannelId),
+ render_frame_id_(MSG_ROUTING_NONE),
+ client_(NULL) {}
WebSocketBridge::~WebSocketBridge() {
if (channel_id_ != kInvalidChannelId) {
« no previous file with comments | « content/child/websocket_bridge.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698