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

Unified Diff: media/cast/logging/logging_defines.h

Issue 178073004: Cast: IPC from browser to renderer to send packet events from transport to cast library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed hubbe's comments Created 6 years, 10 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: media/cast/logging/logging_defines.h
diff --git a/media/cast/logging/logging_defines.h b/media/cast/logging/logging_defines.h
index 10529a2b64ab68d4fc3f2dad14a932822ad77db5..9ecd8ca6bce715133a745f7f4ce30f59025c8f45 100644
--- a/media/cast/logging/logging_defines.h
+++ b/media/cast/logging/logging_defines.h
@@ -21,6 +21,9 @@ typedef uint32 RtpTimestamp;
struct CastLoggingConfig {
// Constructs default config - all logging is disabled.
CastLoggingConfig();
+ CastLoggingConfig(bool enable_raw_data_collection,
+ bool enable_stats_data_collection,
+ bool enable_tracing);
~CastLoggingConfig();
bool enable_raw_data_collection;
@@ -71,7 +74,7 @@ enum CastLoggingEvent {
kVideoPacketReceived,
kDuplicateAudioPacketReceived,
kDuplicateVideoPacketReceived,
- kNumOfLoggingEvents,
+ kNumOfLoggingEvents
};
std::string CastLoggingToString(CastLoggingEvent event);

Powered by Google App Engine
This is Rietveld 408576698