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/host/client_session.h" | 5 #include "remoting/host/client_session.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
10 #include "remoting/base/capabilities.h" | 10 #include "remoting/base/capabilities.h" |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 } else { | 203 } else { |
204 HOST_LOG << "gnubby auth is not enabled"; | 204 HOST_LOG << "gnubby auth is not enabled"; |
205 } | 205 } |
206 return; | 206 return; |
207 } | 207 } |
208 } | 208 } |
209 HOST_LOG << "Unexpected message received: " | 209 HOST_LOG << "Unexpected message received: " |
210 << message.type() << ": " << message.data(); | 210 << message.type() << ": " << message.data(); |
211 } | 211 } |
212 | 212 |
| 213 void ClientSession::OnConnectionAuthenticating( |
| 214 protocol::ConnectionToClient* connection) { |
| 215 event_handler_->OnSessionAuthenticating(this); |
| 216 } |
| 217 |
213 void ClientSession::OnConnectionAuthenticated( | 218 void ClientSession::OnConnectionAuthenticated( |
214 protocol::ConnectionToClient* connection) { | 219 protocol::ConnectionToClient* connection) { |
215 DCHECK(CalledOnValidThread()); | 220 DCHECK(CalledOnValidThread()); |
216 DCHECK_EQ(connection_.get(), connection); | 221 DCHECK_EQ(connection_.get(), connection); |
217 DCHECK(!audio_scheduler_.get()); | 222 DCHECK(!audio_scheduler_.get()); |
218 DCHECK(!desktop_environment_); | 223 DCHECK(!desktop_environment_); |
219 DCHECK(!input_injector_); | 224 DCHECK(!input_injector_); |
220 DCHECK(!screen_controls_); | 225 DCHECK(!screen_controls_); |
221 DCHECK(!video_scheduler_.get()); | 226 DCHECK(!video_scheduler_.get()); |
222 | 227 |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 return scoped_ptr<AudioEncoder>(new AudioEncoderVerbatim()); | 464 return scoped_ptr<AudioEncoder>(new AudioEncoderVerbatim()); |
460 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) { | 465 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) { |
461 return scoped_ptr<AudioEncoder>(new AudioEncoderOpus()); | 466 return scoped_ptr<AudioEncoder>(new AudioEncoderOpus()); |
462 } | 467 } |
463 | 468 |
464 NOTREACHED(); | 469 NOTREACHED(); |
465 return scoped_ptr<AudioEncoder>(); | 470 return scoped_ptr<AudioEncoder>(); |
466 } | 471 } |
467 | 472 |
468 } // namespace remoting | 473 } // namespace remoting |
OLD | NEW |