diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 20:22:25 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 20:22:25 +0000 |
commit | e987ee972f4fc9af948f72dbe21d34be6df8af5e (patch) | |
tree | 906daad590c806147f644d4745b51c6a9fa6abf1 /chrome/default_plugin/plugin_impl_gtk.cc | |
parent | 3d3d5ceb58d2a71402fc346ba26c6bd4231d5116 (diff) | |
download | chromium_src-e987ee972f4fc9af948f72dbe21d34be6df8af5e.zip chromium_src-e987ee972f4fc9af948f72dbe21d34be6df8af5e.tar.gz chromium_src-e987ee972f4fc9af948f72dbe21d34be6df8af5e.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/default_plugin/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3917002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63255 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/default_plugin/plugin_impl_gtk.cc')
-rw-r--r-- | chrome/default_plugin/plugin_impl_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/default_plugin/plugin_impl_gtk.cc b/chrome/default_plugin/plugin_impl_gtk.cc index 19b960e..7179858 100644 --- a/chrome/default_plugin/plugin_impl_gtk.cc +++ b/chrome/default_plugin/plugin_impl_gtk.cc @@ -31,7 +31,7 @@ PluginInstallerImpl::~PluginInstallerImpl() { bool PluginInstallerImpl::Initialize(void* module_handle, NPP instance, NPMIMEType mime_type, int16 argc, char* argn[], char* argv[]) { - DLOG(INFO) << __FUNCTION__ << " MIME Type : " << mime_type; + DVLOG(1) << __FUNCTION__ << " MIME Type : " << mime_type; DCHECK(instance != NULL); if (mime_type == NULL || strlen(mime_type) == 0) { |