Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 128 handler_->OnConnectionClosed(this); | 128 handler_->OnConnectionClosed(this); |
| 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, const net::IPEndPoint& end_point) { | 138 const std::string& channel_name, const net::IPEndPoint& end_point, |
|
Sergey Ulanov
2012/02/02 01:10:23
nit: s/end_point/remote_end_point/
nit: move the s
Lambros
2012/02/02 01:48:12
Done.
| |
| 139 handler_->OnClientIpAddress(this, channel_name, end_point); | 139 const net::IPEndPoint& local_end_point) { |
| 140 handler_->OnClientIpAddress(this, channel_name, end_point, local_end_point); | |
| 140 } | 141 } |
| 141 | 142 |
| 142 void ConnectionToClient::OnChannelInitialized(bool successful) { | 143 void ConnectionToClient::OnChannelInitialized(bool successful) { |
| 143 DCHECK(CalledOnValidThread()); | 144 DCHECK(CalledOnValidThread()); |
| 144 | 145 |
| 145 if (!successful) { | 146 if (!successful) { |
| 146 LOG(ERROR) << "Failed to connect a channel"; | 147 LOG(ERROR) << "Failed to connect a channel"; |
| 147 CloseOnError(); | 148 CloseOnError(); |
| 148 return; | 149 return; |
| 149 } | 150 } |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 167 } | 168 } |
| 168 | 169 |
| 169 void ConnectionToClient::CloseChannels() { | 170 void ConnectionToClient::CloseChannels() { |
| 170 control_dispatcher_.reset(); | 171 control_dispatcher_.reset(); |
| 171 event_dispatcher_.reset(); | 172 event_dispatcher_.reset(); |
| 172 video_writer_.reset(); | 173 video_writer_.reset(); |
| 173 } | 174 } |
| 174 | 175 |
| 175 } // namespace protocol | 176 } // namespace protocol |
| 176 } // namespace remoting | 177 } // namespace remoting |
| OLD | NEW |