summaryrefslogtreecommitdiffstats
path: root/chrome/gpu
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 20:22:08 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 20:22:08 +0000
commit3d3d5ceb58d2a71402fc346ba26c6bd4231d5116 (patch)
tree689c762156d2ea2db99e5a8550ad27f78904a655 /chrome/gpu
parentca8cf5f8032626708e47604d190dbda0ffd8d618 (diff)
downloadchromium_src-3d3d5ceb58d2a71402fc346ba26c6bd4231d5116.zip
chromium_src-3d3d5ceb58d2a71402fc346ba26c6bd4231d5116.tar.gz
chromium_src-3d3d5ceb58d2a71402fc346ba26c6bd4231d5116.tar.bz2
Convert LOG(INFO) to VLOG(1) - chrome/gpu/.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3923003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/gpu')
-rw-r--r--chrome/gpu/gpu_channel.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/gpu/gpu_channel.cc b/chrome/gpu/gpu_channel.cc
index 1ff2598..d5525ed 100644
--- a/chrome/gpu/gpu_channel.cc
+++ b/chrome/gpu/gpu_channel.cc
@@ -50,8 +50,8 @@ void GpuChannel::OnChannelConnected(int32 peer_pid) {
void GpuChannel::OnMessageReceived(const IPC::Message& message) {
if (log_messages_) {
- LOG(INFO) << "received message @" << &message << " on channel @" << this
- << " with type " << message.type();
+ VLOG(1) << "received message @" << &message << " on channel @" << this
+ << " with type " << message.type();
}
if (message.routing_id() == MSG_ROUTING_CONTROL) {
@@ -69,8 +69,8 @@ void GpuChannel::OnChannelError() {
bool GpuChannel::Send(IPC::Message* message) {
if (log_messages_) {
- LOG(INFO) << "sending message @" << message << " on channel @" << this
- << " with type " << message->type();
+ VLOG(1) << "sending message @" << message << " on channel @" << this
+ << " with type " << message->type();
}
if (!channel_.get()) {
@@ -192,7 +192,7 @@ void GpuChannel::OnDestroyCommandBuffer(int32 route_id) {
void GpuChannel::OnCreateVideoDecoder(int32 context_route_id,
int32 decoder_host_id) {
#if defined(ENABLE_GPU)
- LOG(INFO) << "GpuChannel::OnCreateVideoDecoder";
+ VLOG(1) << "GpuChannel::OnCreateVideoDecoder";
GpuVideoService* service = GpuVideoService::get();
if (service == NULL) {
// TODO(hclam): Need to send a failure message.