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

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

Issue 210303003: Cast: Remove LoggingStats in favor of event subscribers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 6 years, 9 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
« no previous file with comments | « media/cast/logging/logging_defines.h ('k') | media/cast/logging/logging_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/logging_defines.cc
diff --git a/media/cast/logging/logging_defines.cc b/media/cast/logging/logging_defines.cc
index adb1f040cf5f604674263cd1a2b78f7b0d3c6a6f..5dbf9d281802bc1bb6ef6a944b14f573843db9d1 100644
--- a/media/cast/logging/logging_defines.cc
+++ b/media/cast/logging/logging_defines.cc
@@ -13,27 +13,6 @@
namespace media {
namespace cast {
-CastLoggingConfig::CastLoggingConfig()
- : enable_raw_data_collection(false),
- enable_stats_data_collection(false) {}
-
-CastLoggingConfig::~CastLoggingConfig() {}
-
-CastLoggingConfig GetDefaultCastSenderLoggingConfig() {
- return CastLoggingConfig();
-}
-
-CastLoggingConfig GetDefaultCastReceiverLoggingConfig() {
- return CastLoggingConfig();
-}
-
-CastLoggingConfig GetLoggingConfigWithRawEventsAndStatsEnabled() {
- CastLoggingConfig config;
- config.enable_raw_data_collection = true;
- config.enable_stats_data_collection = true;
- return config;
-}
-
const char* CastLoggingToString(CastLoggingEvent event) {
switch (event) {
// Can happen if the sender and receiver of RTCP log messages are not
« no previous file with comments | « media/cast/logging/logging_defines.h ('k') | media/cast/logging/logging_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698