Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: webrtc/call/call.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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/call/bitrate_estimator_tests.cc ('k') | webrtc/call/call_perf_tests.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 10
(...skipping 10 matching lines...) Expand all
21 #include "webrtc/base/thread_checker.h" 21 #include "webrtc/base/thread_checker.h"
22 #include "webrtc/base/trace_event.h" 22 #include "webrtc/base/trace_event.h"
23 #include "webrtc/call.h" 23 #include "webrtc/call.h"
24 #include "webrtc/call/congestion_controller.h" 24 #include "webrtc/call/congestion_controller.h"
25 #include "webrtc/call/rtc_event_log.h" 25 #include "webrtc/call/rtc_event_log.h"
26 #include "webrtc/common.h" 26 #include "webrtc/common.h"
27 #include "webrtc/config.h" 27 #include "webrtc/config.h"
28 #include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h" 28 #include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
29 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 29 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
30 #include "webrtc/modules/utility/interface/process_thread.h" 30 #include "webrtc/modules/utility/interface/process_thread.h"
31 #include "webrtc/system_wrappers/interface/cpu_info.h" 31 #include "webrtc/system_wrappers/include/cpu_info.h"
32 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" 32 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
33 #include "webrtc/system_wrappers/interface/logging.h" 33 #include "webrtc/system_wrappers/include/logging.h"
34 #include "webrtc/system_wrappers/interface/rw_lock_wrapper.h" 34 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h"
35 #include "webrtc/system_wrappers/interface/trace.h" 35 #include "webrtc/system_wrappers/include/trace.h"
36 #include "webrtc/video/video_receive_stream.h" 36 #include "webrtc/video/video_receive_stream.h"
37 #include "webrtc/video/video_send_stream.h" 37 #include "webrtc/video/video_send_stream.h"
38 #include "webrtc/video_engine/call_stats.h" 38 #include "webrtc/video_engine/call_stats.h"
39 #include "webrtc/voice_engine/include/voe_codec.h" 39 #include "webrtc/voice_engine/include/voe_codec.h"
40 40
41 namespace webrtc { 41 namespace webrtc {
42 42
43 const int Call::Config::kDefaultStartBitrateBps = 300000; 43 const int Call::Config::kDefaultStartBitrateBps = 300000;
44 44
45 namespace internal { 45 namespace internal {
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 // thread. Then this check can be enabled. 591 // thread. Then this check can be enabled.
592 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); 592 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread());
593 if (RtpHeaderParser::IsRtcp(packet, length)) 593 if (RtpHeaderParser::IsRtcp(packet, length))
594 return DeliverRtcp(media_type, packet, length); 594 return DeliverRtcp(media_type, packet, length);
595 595
596 return DeliverRtp(media_type, packet, length, packet_time); 596 return DeliverRtp(media_type, packet, length, packet_time);
597 } 597 }
598 598
599 } // namespace internal 599 } // namespace internal
600 } // namespace webrtc 600 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/call/bitrate_estimator_tests.cc ('k') | webrtc/call/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698