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

Unified Diff: content/browser/renderer_host/media/video_capture_oracle.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/browser/plugin_service_impl.cc ('k') | content/browser/renderer_host/p2p/socket_host_udp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/media/video_capture_oracle.cc
diff --git a/content/browser/renderer_host/media/video_capture_oracle.cc b/content/browser/renderer_host/media/video_capture_oracle.cc
index c05ac0f8a378936ce592ee3efb3f4f5034a8b5ac..2829595e64481ed4685413fb37b02b0e3d6d0d18 100644
--- a/content/browser/renderer_host/media/video_capture_oracle.cc
+++ b/content/browser/renderer_host/media/video_capture_oracle.cc
@@ -130,10 +130,10 @@ void SmoothEventSampler::RecordSample() {
}
bool is_paused = overdue_sample_count_ == redundant_capture_goal_;
- LOG_IF(INFO, !was_paused && is_paused)
+ VLOG_IF(0, !was_paused && is_paused)
<< "Tab content unchanged for " << redundant_capture_goal_
<< " frames; capture will halt until content changes.";
- LOG_IF(INFO, was_paused && !is_paused)
+ VLOG_IF(0, was_paused && !is_paused)
<< "Content changed; capture will resume.";
}
« no previous file with comments | « content/browser/plugin_service_impl.cc ('k') | content/browser/renderer_host/p2p/socket_host_udp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698