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

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: 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
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..8ac2993aae6928cbf62306b2d8c10544de577d68 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));
@@ -257,5 +260,6 @@ TEST_F(TestLogging, GenericLogging) {
EXPECT_NEAR(kBaseValue, sit->second, 2.5);
}
+
} // namespace cast
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698