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

Unified Diff: webrtc/logging/rtc_event_log/rtc_event_log.h

Issue 2851303007: Replace AudioReceiveStream::Config with rtclog::StreamConfig. (Closed)
Patch Set: Rebased. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/logging/rtc_event_log/rtc_event_log.h
diff --git a/webrtc/logging/rtc_event_log/rtc_event_log.h b/webrtc/logging/rtc_event_log/rtc_event_log.h
index fb64e94005385e6387874c39d1b0ac817360fb07..8e8bd827c70a6cdb31d807dcdd1643f567b26dec 100644
--- a/webrtc/logging/rtc_event_log/rtc_event_log.h
+++ b/webrtc/logging/rtc_event_log/rtc_event_log.h
@@ -119,9 +119,9 @@ class RtcEventLog {
// Logs configuration information for a video send stream.
virtual void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) = 0;
- // Logs configuration information for webrtc::AudioReceiveStream.
+ // Logs configuration information for an audio receive stream.
virtual void LogAudioReceiveStreamConfig(
- const webrtc::AudioReceiveStream::Config& config) = 0;
+ const rtclog::StreamConfig& config) = 0;
// Logs configuration information for webrtc::AudioSendStream.
virtual void LogAudioSendStreamConfig(
@@ -202,7 +202,7 @@ class RtcEventLogNullImpl final : public RtcEventLog {
const rtclog::StreamConfig& config) override {}
void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) override {}
void LogAudioReceiveStreamConfig(
- const AudioReceiveStream::Config& config) override {}
+ const rtclog::StreamConfig& config) override {}
void LogAudioSendStreamConfig(
const AudioSendStream::Config& config) override {}
void LogRtpHeader(PacketDirection direction,
« no previous file with comments | « webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h ('k') | webrtc/logging/rtc_event_log/rtc_event_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698