| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/fake_connection_to_client.h" | 5 #include "remoting/protocol/fake_connection_to_client.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "remoting/codec/video_encoder.h" | 9 #include "remoting/codec/video_encoder.h" |
| 10 #include "remoting/protocol/audio_source.h" |
| 11 #include "remoting/protocol/audio_stream.h" |
| 10 #include "remoting/protocol/session.h" | 12 #include "remoting/protocol/session.h" |
| 11 #include "remoting/protocol/video_frame_pump.h" | 13 #include "remoting/protocol/video_frame_pump.h" |
| 12 #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" | 14 #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" |
| 13 | 15 |
| 14 namespace remoting { | 16 namespace remoting { |
| 15 namespace protocol { | 17 namespace protocol { |
| 16 | 18 |
| 17 FakeVideoStream::FakeVideoStream() : weak_factory_(this) {} | 19 FakeVideoStream::FakeVideoStream() : weak_factory_(this) {} |
| 18 FakeVideoStream::~FakeVideoStream() {} | 20 FakeVideoStream::~FakeVideoStream() {} |
| 19 | 21 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 video_stub_)); | 57 video_stub_)); |
| 56 video_feedback_stub_ = pump->video_feedback_stub(); | 58 video_feedback_stub_ = pump->video_feedback_stub(); |
| 57 return std::move(pump); | 59 return std::move(pump); |
| 58 } | 60 } |
| 59 | 61 |
| 60 std::unique_ptr<FakeVideoStream> result(new FakeVideoStream()); | 62 std::unique_ptr<FakeVideoStream> result(new FakeVideoStream()); |
| 61 last_video_stream_ = result->GetWeakPtr(); | 63 last_video_stream_ = result->GetWeakPtr(); |
| 62 return std::move(result); | 64 return std::move(result); |
| 63 } | 65 } |
| 64 | 66 |
| 65 AudioStub* FakeConnectionToClient::audio_stub() { | 67 std::unique_ptr<AudioStream> FakeConnectionToClient::StartAudioStream( |
| 66 return audio_stub_; | 68 std::unique_ptr<AudioSource> audio_source) { |
| 69 NOTIMPLEMENTED(); |
| 70 return nullptr; |
| 67 } | 71 } |
| 68 | 72 |
| 69 ClientStub* FakeConnectionToClient::client_stub() { | 73 ClientStub* FakeConnectionToClient::client_stub() { |
| 70 return client_stub_; | 74 return client_stub_; |
| 71 } | 75 } |
| 72 | 76 |
| 73 void FakeConnectionToClient::Disconnect(ErrorCode disconnect_error) { | 77 void FakeConnectionToClient::Disconnect(ErrorCode disconnect_error) { |
| 74 CHECK(is_connected_); | 78 CHECK(is_connected_); |
| 75 | 79 |
| 76 is_connected_ = false; | 80 is_connected_ = false; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 92 void FakeConnectionToClient::set_host_stub(HostStub* host_stub) { | 96 void FakeConnectionToClient::set_host_stub(HostStub* host_stub) { |
| 93 host_stub_ = host_stub; | 97 host_stub_ = host_stub; |
| 94 } | 98 } |
| 95 | 99 |
| 96 void FakeConnectionToClient::set_input_stub(InputStub* input_stub) { | 100 void FakeConnectionToClient::set_input_stub(InputStub* input_stub) { |
| 97 input_stub_ = input_stub; | 101 input_stub_ = input_stub; |
| 98 } | 102 } |
| 99 | 103 |
| 100 } // namespace protocol | 104 } // namespace protocol |
| 101 } // namespace remoting | 105 } // namespace remoting |
| OLD | NEW |