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

Unified Diff: content/common/gpu/media/video_decode_accelerator_unittest.cc

Issue 83413006: Replace LOG(INFO) with VLOG(0), throughout *media* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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: content/common/gpu/media/video_decode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/video_decode_accelerator_unittest.cc b/content/common/gpu/media/video_decode_accelerator_unittest.cc
index 2d1b0067e28d92660383d4d6a3e2b62691b413b7..7125f2bf1eb16c42aeee48f36b11f378ad73eac6 100644
--- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
@@ -1266,7 +1266,7 @@ TEST_P(VideoDecodeAcceleratorParamTest, TestSimpleDecode) {
EXPECT_EQ(client->num_done_bitstream_buffers(),
client->num_queued_fragments());
}
- LOG(INFO) << "Decoder " << i << " fps: " << client->frames_per_second();
+ VLOG(0) << "Decoder " << i << " fps: " << client->frames_per_second();
if (!render_as_thumbnails) {
int min_fps = suppress_rendering ?
video_file->min_fps_no_render : video_file->min_fps_render;
@@ -1453,7 +1453,7 @@ TEST_F(VideoDecodeAcceleratorTest, TestDecodeTimeMedian) {
int decode_time_median = client->decode_time_median();
std::string output_string =
base::StringPrintf("Decode time median: %d ms", decode_time_median);
- LOG(INFO) << output_string;
+ VLOG(0) << output_string;
ASSERT_GT(decode_time_median, 0);
if (g_output_log != NULL)

Powered by Google App Engine
This is Rietveld 408576698