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

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

Issue 134843005: Cast:Updating logging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Responding to review and removing unused files Created 6 years, 11 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_stats.cc ('k') | media/cast/test/end2end_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/logging_unittest.cc
diff --git a/media/cast/logging/logging_unittest.cc b/media/cast/logging/logging_unittest.cc
index 7dd2ac714ee8a8a3bf5a3b0d05d5ece6bea960c7..c9aa9f5dd0631ae303dafbf06c8249aa854d6971 100644
--- a/media/cast/logging/logging_unittest.cc
+++ b/media/cast/logging/logging_unittest.cc
@@ -24,8 +24,11 @@ static const int64 kStartMillisecond = GG_INT64_C(12345678900000);
class TestLogging : public ::testing::Test {
protected:
TestLogging() {
- // Enable logging, disable tracing and uma.
- config_.enable_data_collection = true;
+ // Enable all logging types.
+ config_.enable_raw_data_collection = true;
+ config_.enable_stats_data_collection = true;
+ config_.enable_uma_stats = true;
+ config_.enable_tracing = true;
testing_clock_.Advance(
base::TimeDelta::FromMilliseconds(kStartMillisecond));
« no previous file with comments | « media/cast/logging/logging_stats.cc ('k') | media/cast/test/end2end_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698