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

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

Issue 84293002: LOG(INFO) -> VLOG(0) in content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whitespace 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
« no previous file with comments | « content/common/gpu/media/gpu_video_decode_accelerator.cc ('k') | content/common/handle_enumerator_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2ab661d7e0a8a57716b1ce2bd1dddcf606adb10c..7c1f077b50bcf7f213593f27013b664dae7b703b 100644
--- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
@@ -1269,7 +1269,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;
@@ -1456,7 +1456,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)
« no previous file with comments | « content/common/gpu/media/gpu_video_decode_accelerator.cc ('k') | content/common/handle_enumerator_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698