Chromium Code Reviews| Index: webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h |
| diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h b/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h |
| index caafe4d31840ee9c2f0023104902a3cba38d03ab..37b5495b86a2fef3635036e0d9fe2e787fb70609 100644 |
| --- a/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h |
| +++ b/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h |
| @@ -11,15 +11,24 @@ |
| #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_AUDIO_NETWORK_ADAPTATION_H_ |
| #define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_AUDIO_NETWORK_ADAPTATION_H_ |
| +#include <memory> |
|
eladalon
2017/09/08 17:28:59
Please skip the changes in this file for now; ther
|
| + |
| #include "webrtc/logging/rtc_event_log/events/rtc_event.h" |
| namespace webrtc { |
| +struct AudioEncoderRuntimeConfig; |
| + |
| class RtcEventAudioNetworkAdaptation final : public RtcEvent { |
| public: |
| - ~RtcEventAudioNetworkAdaptation() override = default; |
| + // explicit RtcEventAudioNetworkAdaptation( |
| + // std::unique_ptr<AudioEncoderRuntimeConfig> config); |
| + ~RtcEventAudioNetworkAdaptation() override; |
| Type GetType() const override; |
| + |
| + // TODO(eladalon): !!! |
| + // std::unique_ptr<AudioEncoderRuntimeConfig> config_; |
| }; |
| } // namespace webrtc |