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

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

Issue 1917043005: #include "webrtc/base/constructormagic.h" where appropriate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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/base/x11windowpicker.cc ('k') | webrtc/call/ringbuffer.h » ('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
11 #include <string.h> 11 #include <string.h>
12 12
13 #include <map> 13 #include <map>
14 #include <memory> 14 #include <memory>
15 #include <vector> 15 #include <vector>
16 16
17 #include "webrtc/audio/audio_receive_stream.h" 17 #include "webrtc/audio/audio_receive_stream.h"
18 #include "webrtc/audio/audio_send_stream.h" 18 #include "webrtc/audio/audio_send_stream.h"
19 #include "webrtc/audio/audio_state.h" 19 #include "webrtc/audio/audio_state.h"
20 #include "webrtc/audio/scoped_voe_interface.h" 20 #include "webrtc/audio/scoped_voe_interface.h"
21 #include "webrtc/base/checks.h" 21 #include "webrtc/base/checks.h"
22 #include "webrtc/base/constructormagic.h"
22 #include "webrtc/base/logging.h" 23 #include "webrtc/base/logging.h"
23 #include "webrtc/base/thread_annotations.h" 24 #include "webrtc/base/thread_annotations.h"
24 #include "webrtc/base/thread_checker.h" 25 #include "webrtc/base/thread_checker.h"
25 #include "webrtc/base/trace_event.h" 26 #include "webrtc/base/trace_event.h"
26 #include "webrtc/call.h" 27 #include "webrtc/call.h"
27 #include "webrtc/call/bitrate_allocator.h" 28 #include "webrtc/call/bitrate_allocator.h"
28 #include "webrtc/call/rtc_event_log.h" 29 #include "webrtc/call/rtc_event_log.h"
29 #include "webrtc/config.h" 30 #include "webrtc/config.h"
30 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" 31 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
31 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" 32 #include "webrtc/modules/congestion_controller/include/congestion_controller.h"
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 // thread. Then this check can be enabled. 834 // thread. Then this check can be enabled.
834 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); 835 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread());
835 if (RtpHeaderParser::IsRtcp(packet, length)) 836 if (RtpHeaderParser::IsRtcp(packet, length))
836 return DeliverRtcp(media_type, packet, length); 837 return DeliverRtcp(media_type, packet, length);
837 838
838 return DeliverRtp(media_type, packet, length, packet_time); 839 return DeliverRtp(media_type, packet, length, packet_time);
839 } 840 }
840 841
841 } // namespace internal 842 } // namespace internal
842 } // namespace webrtc 843 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/base/x11windowpicker.cc ('k') | webrtc/call/ringbuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698