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: webrtc/test/direct_transport.cc

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « webrtc/test/configurable_frame_size_encoder.cc ('k') | webrtc/test/fake_audio_device.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 /* 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 "webrtc/test/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
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 fake_network_.Process(); 82 fake_network_.Process();
83 int64_t wait_time_ms = fake_network_.TimeUntilNextProcess(); 83 int64_t wait_time_ms = fake_network_.TimeUntilNextProcess();
84 if (wait_time_ms > 0) { 84 if (wait_time_ms > 0) {
85 packet_event_.Wait(static_cast<int>(wait_time_ms)); 85 packet_event_.Wait(static_cast<int>(wait_time_ms));
86 } 86 }
87 rtc::CritScope crit(&lock_); 87 rtc::CritScope crit(&lock_);
88 return shutting_down_ ? false : true; 88 return shutting_down_ ? false : true;
89 } 89 }
90 } // namespace test 90 } // namespace test
91 } // namespace webrtc 91 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/test/configurable_frame_size_encoder.cc ('k') | webrtc/test/fake_audio_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698