diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:57 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:57 +0000 |
commit | 3cd3202a53d2fbb2944a61c9286ff74b3ea6671b (patch) | |
tree | 7a363e8b0341019479237e6bdefb69c9be00e1e9 /chrome/plugin | |
parent | 34382243579faed133d9843053c98bbd38abdf59 (diff) | |
download | chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.zip chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.tar.gz chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/plugin/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3899004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/plugin_channel.cc | 10 | ||||
-rw-r--r-- | chrome/plugin/plugin_main.cc | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/chrome/plugin/plugin_channel.cc b/chrome/plugin/plugin_channel.cc index 941db8c..a3216c6 100644 --- a/chrome/plugin/plugin_channel.cc +++ b/chrome/plugin/plugin_channel.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -189,8 +189,8 @@ PluginChannel::~PluginChannel() { bool PluginChannel::Send(IPC::Message* msg) { in_send_++; if (log_messages_) { - LOG(INFO) << "sending message @" << msg << " on channel @" << this - << " with type " << msg->type(); + VLOG(1) << "sending message @" << msg << " on channel @" << this + << " with type " << msg->type(); } bool result = PluginChannelBase::Send(msg); in_send_--; @@ -199,8 +199,8 @@ bool PluginChannel::Send(IPC::Message* msg) { void PluginChannel::OnMessageReceived(const IPC::Message& msg) { if (log_messages_) { - LOG(INFO) << "received message @" << &msg << " on channel @" << this - << " with type " << msg.type(); + VLOG(1) << "received message @" << &msg << " on channel @" << this + << " with type " << msg.type(); } PluginChannelBase::OnMessageReceived(msg); } diff --git a/chrome/plugin/plugin_main.cc b/chrome/plugin/plugin_main.cc index 3267fa0..f2aff2f 100644 --- a/chrome/plugin/plugin_main.cc +++ b/chrome/plugin/plugin_main.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -105,8 +105,8 @@ int PluginMain(const MainFunctionParams& parameters) { parameters.sandbox_info_.TargetServices(); CoInitialize(NULL); - DLOG(INFO) << "Started plugin with " << - parsed_command_line.command_line_string(); + DVLOG(1) << "Started plugin with " + << parsed_command_line.command_line_string(); HMODULE sandbox_test_module = NULL; bool no_sandbox = parsed_command_line.HasSwitch(switches::kNoSandbox) || @@ -134,7 +134,7 @@ int PluginMain(const MainFunctionParams& parameters) { // the sandbox right away, but if it is the built-in flash we let flash // start elevated and it will call DelayedLowerToken(0) when it's ready. if (IsPluginBuiltInFlash(parsed_command_line)) { - DLOG(INFO) << "Sandboxing flash"; + DVLOG(1) << "Sandboxing flash"; DelayedLowerToken(target_services); } else { target_services->LowerToken(); @@ -147,7 +147,7 @@ int PluginMain(const MainFunctionParams& parameters) { DCHECK(run_security_tests); if (run_security_tests) { int test_count = 0; - DLOG(INFO) << "Running plugin security tests"; + DVLOG(1) << "Running plugin security tests"; BOOL result = run_security_tests(&test_count); DCHECK(result) << "Test number " << test_count << " has failed."; // If we are in release mode, crash or debug the process. |