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

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

Issue 3012233002: Remove #include of rtc_stream_config.h from rtc_event_log.h (Closed)
Patch Set: Rebased Created 3 years, 3 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 | « no previous file | webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.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
(...skipping 10 matching lines...) Expand all
21 #include "webrtc/audio/audio_send_stream.h" 21 #include "webrtc/audio/audio_send_stream.h"
22 #include "webrtc/audio/audio_state.h" 22 #include "webrtc/audio/audio_state.h"
23 #include "webrtc/audio/scoped_voe_interface.h" 23 #include "webrtc/audio/scoped_voe_interface.h"
24 #include "webrtc/audio/time_interval.h" 24 #include "webrtc/audio/time_interval.h"
25 #include "webrtc/call/bitrate_allocator.h" 25 #include "webrtc/call/bitrate_allocator.h"
26 #include "webrtc/call/call.h" 26 #include "webrtc/call/call.h"
27 #include "webrtc/call/flexfec_receive_stream_impl.h" 27 #include "webrtc/call/flexfec_receive_stream_impl.h"
28 #include "webrtc/call/rtp_stream_receiver_controller.h" 28 #include "webrtc/call/rtp_stream_receiver_controller.h"
29 #include "webrtc/call/rtp_transport_controller_send.h" 29 #include "webrtc/call/rtp_transport_controller_send.h"
30 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 30 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
31 #include "webrtc/logging/rtc_event_log/rtc_stream_config.h"
31 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" 32 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
32 #include "webrtc/modules/congestion_controller/include/receive_side_congestion_c ontroller.h" 33 #include "webrtc/modules/congestion_controller/include/receive_side_congestion_c ontroller.h"
33 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" 34 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h"
34 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" 35 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h"
35 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" 36 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
36 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 37 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
37 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" 38 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
38 #include "webrtc/modules/utility/include/process_thread.h" 39 #include "webrtc/modules/utility/include/process_thread.h"
39 #include "webrtc/rtc_base/basictypes.h" 40 #include "webrtc/rtc_base/basictypes.h"
40 #include "webrtc/rtc_base/checks.h" 41 #include "webrtc/rtc_base/checks.h"
(...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) { 1439 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) {
1439 receive_side_cc_.OnReceivedPacket( 1440 receive_side_cc_.OnReceivedPacket(
1440 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(), 1441 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(),
1441 header); 1442 header);
1442 } 1443 }
1443 } 1444 }
1444 1445
1445 } // namespace internal 1446 } // namespace internal
1446 1447
1447 } // namespace webrtc 1448 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698