| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #include "webrtc/test/direct_transport.h" | 10 #include "webrtc/test/direct_transport.h" |
| 11 | 11 |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 #include "webrtc/call.h" | 14 #include "webrtc/call.h" |
| 15 #include "webrtc/system_wrappers/include/clock.h" | 15 #include "webrtc/system_wrappers/include/clock.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace test { | 18 namespace test { |
| 19 | 19 |
| 20 DirectTransport::DirectTransport(Call* send_call) | 20 DirectTransport::DirectTransport(Call* send_call) |
| 21 : DirectTransport(FakeNetworkPipe::Config(), send_call) {} | 21 : DirectTransport(FakeNetworkPipe::Config(), send_call) {} |
| 22 | 22 |
| 23 DirectTransport::DirectTransport(const FakeNetworkPipe::Config& config, | 23 DirectTransport::DirectTransport(const FakeNetworkPipe::Config& config, |
| 24 Call* send_call) | 24 Call* send_call) |
| 25 : send_call_(send_call), | 25 : send_call_(send_call), |
| 26 packet_event_(EventWrapper::Create()), | 26 packet_event_(EventWrapper::Create()), |
| 27 thread_(NetworkProcess, this, "NetworkProcess"), | 27 thread_(NetworkProcess, this, "NetworkProcess"), |
| 28 clock_(Clock::GetRealTimeClock()), | 28 clock_(Clock::GetRealTimeClock()), |
| 29 shutting_down_(false), | 29 shutting_down_(false), |
| 30 fake_network_(config) { | 30 fake_network_(clock_, config) { |
| 31 thread_.Start(); | 31 thread_.Start(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 DirectTransport::~DirectTransport() { StopSending(); } | 34 DirectTransport::~DirectTransport() { StopSending(); } |
| 35 | 35 |
| 36 void DirectTransport::SetConfig(const FakeNetworkPipe::Config& config) { | 36 void DirectTransport::SetConfig(const FakeNetworkPipe::Config& config) { |
| 37 fake_network_.SetConfig(config); | 37 fake_network_.SetConfig(config); |
| 38 } | 38 } |
| 39 | 39 |
| 40 void DirectTransport::StopSending() { | 40 void DirectTransport::StopSending() { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 case kEventError: | 86 case kEventError: |
| 87 // TODO(pbos): Log a warning here? | 87 // TODO(pbos): Log a warning here? |
| 88 return true; | 88 return true; |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 rtc::CritScope crit(&lock_); | 91 rtc::CritScope crit(&lock_); |
| 92 return shutting_down_ ? false : true; | 92 return shutting_down_ ? false : true; |
| 93 } | 93 } |
| 94 } // namespace test | 94 } // namespace test |
| 95 } // namespace webrtc | 95 } // namespace webrtc |
| OLD | NEW |