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

Unified Diff: content/browser/plugin_service_impl.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_browsertest.cc ('k') | content/browser/renderer_host/media/video_capture_oracle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_service_impl.cc
diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc
index 1e4083d8a094a5d3b42fca3d0d31a9204273a00d..1ddcf4012a1370476422bc66ce01e6cf372881f9 100644
--- a/content/browser/plugin_service_impl.cc
+++ b/content/browser/plugin_service_impl.cc
@@ -736,7 +736,7 @@ void PluginServiceImpl::AddExtraPluginPath(const base::FilePath& path) {
if (!NPAPIPluginsSupported()) {
// TODO(jam): remove and just have CHECK once we're sure this doesn't get
// triggered.
- DLOG(INFO) << "NPAPI plugins not supported";
+ DVLOG(0) << "NPAPI plugins not supported";
return;
}
PluginList::Singleton()->AddExtraPluginPath(path);
@@ -755,7 +755,7 @@ void PluginServiceImpl::RegisterInternalPlugin(
bool add_at_beginning) {
if (!NPAPIPluginsSupported() &&
info.type == WebPluginInfo::PLUGIN_TYPE_NPAPI) {
- DLOG(INFO) << "Don't register NPAPI plugins when they're not supported";
+ DVLOG(0) << "Don't register NPAPI plugins when they're not supported";
return;
}
PluginList::Singleton()->RegisterInternalPlugin(info, add_at_beginning);
« no previous file with comments | « content/browser/plugin_browsertest.cc ('k') | content/browser/renderer_host/media/video_capture_oracle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698