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

Side by Side Diff: remoting/protocol/connection_to_client.cc

Issue 9727005: Log connection type to syslogs and to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/protocol/connection_to_client.h ('k') | remoting/protocol/jingle_session.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/connection_to_client.h" 5 #include "remoting/protocol/connection_to_client.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop_proxy.h"
10 #include "google/protobuf/message.h" 10 #include "google/protobuf/message.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 break; 129 break;
130 130
131 case Session::FAILED: 131 case Session::FAILED:
132 CloseOnError(); 132 CloseOnError();
133 break; 133 break;
134 } 134 }
135 } 135 }
136 136
137 void ConnectionToClient::OnSessionRouteChange( 137 void ConnectionToClient::OnSessionRouteChange(
138 const std::string& channel_name, 138 const std::string& channel_name,
139 const net::IPEndPoint& remote_end_point, 139 const TransportRoute& route) {
140 const net::IPEndPoint& local_end_point) { 140 handler_->OnRouteChange(this, channel_name, route);
141 handler_->OnRouteChange(this, channel_name, remote_end_point,
142 local_end_point);
143 } 141 }
144 142
145 void ConnectionToClient::OnChannelInitialized(bool successful) { 143 void ConnectionToClient::OnChannelInitialized(bool successful) {
146 DCHECK(CalledOnValidThread()); 144 DCHECK(CalledOnValidThread());
147 145
148 if (!successful) { 146 if (!successful) {
149 LOG(ERROR) << "Failed to connect a channel"; 147 LOG(ERROR) << "Failed to connect a channel";
150 CloseOnError(); 148 CloseOnError();
151 return; 149 return;
152 } 150 }
(...skipping 17 matching lines...) Expand all
170 } 168 }
171 169
172 void ConnectionToClient::CloseChannels() { 170 void ConnectionToClient::CloseChannels() {
173 control_dispatcher_.reset(); 171 control_dispatcher_.reset();
174 event_dispatcher_.reset(); 172 event_dispatcher_.reset();
175 video_writer_.reset(); 173 video_writer_.reset();
176 } 174 }
177 175
178 } // namespace protocol 176 } // namespace protocol
179 } // namespace remoting 177 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/connection_to_client.h ('k') | remoting/protocol/jingle_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698