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

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

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.cc
diff --git a/media/cast/logging/logging_defines.cc b/media/cast/logging/logging_defines.cc
index 5adb574172232fd93c253829b45614d41a4f3e11..6f9527585654f201d3e19154c4508beca4b17690 100644
--- a/media/cast/logging/logging_defines.cc
+++ b/media/cast/logging/logging_defines.cc
@@ -18,6 +18,13 @@ CastLoggingConfig::CastLoggingConfig()
enable_stats_data_collection(false),
enable_tracing(false) {}
+CastLoggingConfig::CastLoggingConfig(bool enable_raw_data_collection,
+ bool enable_stats_data_collection,
+ bool enable_tracing)
+ : enable_raw_data_collection(enable_raw_data_collection),
+ enable_stats_data_collection(enable_stats_data_collection),
+ enable_tracing(enable_tracing) {}
+
CastLoggingConfig::~CastLoggingConfig() {}
CastLoggingConfig GetDefaultCastSenderLoggingConfig() {

Powered by Google App Engine
This is Rietveld 408576698