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

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc

Issue 3012923002: Add the internals of RtcEvent's subclasses (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc b/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc
index 225f5b243ac4c895315a19a6774a903d03180e59..185951d341d177f7c412d41c0ef19301b3c61b99 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc
@@ -10,8 +10,18 @@
#include "webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h"
+#include <utility>
eladalon 2017/09/08 17:28:59 Please skip the changes in this file for now; ther
+
+#include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h"
+
namespace webrtc {
+// RtcEventAudioNetworkAdaptation::RtcEventAudioNetworkAdaptation(
+// std::unique_ptr<AudioEncoderRuntimeConfig> config)
+// : config_(std::move(config)) {}
+
+RtcEventAudioNetworkAdaptation::~RtcEventAudioNetworkAdaptation() = default;
+
RtcEvent::Type RtcEventAudioNetworkAdaptation::GetType() const {
return RtcEvent::Type::AudioNetworkAdaptation;
}

Powered by Google App Engine
This is Rietveld 408576698