| Index: content/browser/renderer_host/websocket_host.cc
|
| diff --git a/content/browser/renderer_host/websocket_host.cc b/content/browser/renderer_host/websocket_host.cc
|
| index 3c89b5ca0582395a01fa715990642e15b4ae9716..8d0046bcc4d115629759b72fabf43e832463d80f 100644
|
| --- a/content/browser/renderer_host/websocket_host.cc
|
| +++ b/content/browser/renderer_host/websocket_host.cc
|
| @@ -353,7 +353,7 @@
|
| DVLOG(3) << "WebSocketHost::OnAddChannelRequest"
|
| << " routing_id=" << routing_id_ << " socket_url=\"" << socket_url
|
| << "\" requested_protocols=\""
|
| - << base::JoinString(requested_protocols, ", ") << "\" origin=\""
|
| + << JoinString(requested_protocols, ", ") << "\" origin=\""
|
| << origin.string() << "\"";
|
|
|
| DCHECK(!channel_);
|
| @@ -377,7 +377,7 @@
|
| DVLOG(3) << "WebSocketHost::AddChannel"
|
| << " routing_id=" << routing_id_ << " socket_url=\"" << socket_url
|
| << "\" requested_protocols=\""
|
| - << base::JoinString(requested_protocols, ", ") << "\" origin=\""
|
| + << JoinString(requested_protocols, ", ") << "\" origin=\""
|
| << origin.string() << "\"";
|
|
|
| DCHECK(!channel_);
|
|
|