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

Unified Diff: content/child/websocket_bridge.cc

Issue 1153763002: Hardening the 'url::Origin' implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More. Created 5 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/browser/renderer_host/websocket_host.cc ('k') | content/public/common/common_param_traits.cc » ('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 2af6e8ece84e35f3451851b1b67aeb1e6e92be8d..987ae4e5792b80a312ed5236585f31599a0a7bd1 100644
--- a/content/child/websocket_bridge.cc
+++ b/content/child/websocket_bridge.cc
@@ -220,8 +220,8 @@ void WebSocketBridge::connect(
url::Origin origin_to_pass(origin);
DVLOG(1) << "Bridge#" << channel_id_ << " Connect(" << url << ", ("
- << JoinString(protocols_to_pass, ", ") << "), "
- << origin_to_pass.string() << ")";
+ << JoinString(protocols_to_pass, ", ") << "), " << origin_to_pass
+ << ")";
ChildThreadImpl::current()->Send(new WebSocketHostMsg_AddChannelRequest(
channel_id_, url, protocols_to_pass, origin_to_pass, render_frame_id_));
« no previous file with comments | « content/browser/renderer_host/websocket_host.cc ('k') | content/public/common/common_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698