| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ | 11 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ |
| 12 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ | 12 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "webrtc/api/call/audio_receive_stream.h" | |
| 18 #include "webrtc/api/call/audio_send_stream.h" | |
| 19 #include "webrtc/base/platform_file.h" | 17 #include "webrtc/base/platform_file.h" |
| 18 #include "webrtc/call/audio_receive_stream.h" |
| 19 #include "webrtc/call/audio_send_stream.h" |
| 20 #include "webrtc/video_receive_stream.h" | 20 #include "webrtc/video_receive_stream.h" |
| 21 #include "webrtc/video_send_stream.h" | 21 #include "webrtc/video_send_stream.h" |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 | 24 |
| 25 // Forward declaration of storage class that is automatically generated from | 25 // Forward declaration of storage class that is automatically generated from |
| 26 // the protobuf file. | 26 // the protobuf file. |
| 27 namespace rtclog { | 27 namespace rtclog { |
| 28 class EventStream; | 28 class EventStream; |
| 29 } // namespace rtclog | 29 } // namespace rtclog |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 size_t length) override {} | 147 size_t length) override {} |
| 148 void LogAudioPlayout(uint32_t ssrc) override {} | 148 void LogAudioPlayout(uint32_t ssrc) override {} |
| 149 void LogBwePacketLossEvent(int32_t bitrate, | 149 void LogBwePacketLossEvent(int32_t bitrate, |
| 150 uint8_t fraction_loss, | 150 uint8_t fraction_loss, |
| 151 int32_t total_packets) override {} | 151 int32_t total_packets) override {} |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 } // namespace webrtc | 154 } // namespace webrtc |
| 155 | 155 |
| 156 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ | 156 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ |
| OLD | NEW |