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

Unified Diff: content/common/pepper_plugin_list.cc

Issue 103623003: Instrument pepper plugin load failures. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years 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/ppapi_plugin_process_host.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/pepper_plugin_list.cc
===================================================================
--- content/common/pepper_plugin_list.cc (revision 239266)
+++ content/common/pepper_plugin_list.cc (working copy)
@@ -56,7 +56,7 @@
size_t plugins_to_register = modules.size();
if (plugins_to_register > kMaxPluginsToRegisterFromCommandLine) {
- DLOG(WARNING) << plugins_to_register << " pepper plugins registered from"
+ VLOG(1) << plugins_to_register << " pepper plugins registered from"
<< " command line which exceeds the limit (maximum "
<< kMaxPluginsToRegisterFromCommandLine << " plugins allowed)";
plugins_to_register = kMaxPluginsToRegisterFromCommandLine;
@@ -66,7 +66,7 @@
std::vector<std::string> parts;
base::SplitString(modules[i], ';', &parts);
if (parts.size() < 2) {
- DLOG(ERROR) << "Required mime-type not found";
+ VLOG(1) << "Required mime-type not found";
continue;
}
@@ -89,7 +89,7 @@
if (base::PathExists(plugin.path)) {
skip_file_check_flags |= index_mask;
} else {
- DLOG(ERROR) << "Plugin doesn't exist:" << plugin.path.MaybeAsASCII();
+ VLOG(1) << "Plugin doesn't exist: " << plugin.path.MaybeAsASCII();
continue;
}
}
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698