diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 00:42:51 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 00:42:51 +0000 |
commit | 0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8 (patch) | |
tree | 7fe292f7316af7b9e983f37bb42d8039eb280027 /app | |
parent | 7d08c5e739696ca1956fd6539f235f4cdb586959 (diff) | |
download | chromium_src-0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8.zip chromium_src-0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8.tar.gz chromium_src-0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - app/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3771009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63000 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-rw-r--r-- | app/gfx/gl/gl_context_linux.cc | 2 | ||||
-rw-r--r-- | app/gfx/gl/gl_implementation_linux.cc | 2 | ||||
-rw-r--r-- | app/gfx/gl/gl_implementation_mac.cc | 2 | ||||
-rw-r--r-- | app/gfx/gl/gl_implementation_win.cc | 4 | ||||
-rw-r--r-- | app/system_monitor.cc | 10 |
5 files changed, 10 insertions, 10 deletions
diff --git a/app/gfx/gl/gl_context_linux.cc b/app/gfx/gl/gl_context_linux.cc index 2301e9e..fd0b7b9 100644 --- a/app/gfx/gl/gl_context_linux.cc +++ b/app/gfx/gl/gl_context_linux.cc @@ -649,7 +649,7 @@ void PbufferGLContext::SetSwapInterval(int interval) { } bool PixmapGLContext::Initialize(GLContext* shared_context) { - LOG(INFO) << "GL context: using pixmaps."; + VLOG(1) << "GL context: using pixmaps."; static int attributes[] = { GLX_RGBA, diff --git a/app/gfx/gl/gl_implementation_linux.cc b/app/gfx/gl/gl_implementation_linux.cc index 2637f75..09e0c71 100644 --- a/app/gfx/gl/gl_implementation_linux.cc +++ b/app/gfx/gl/gl_implementation_linux.cc @@ -48,7 +48,7 @@ bool InitializeGLBindings(GLImplementation implementation) { base::NativeLibrary library = base::LoadNativeLibrary( module_path.Append("libosmesa.so")); if (!library) { - DLOG(INFO) << "libosmesa.so not found"; + DVLOG(1) << "libosmesa.so not found"; return false; } diff --git a/app/gfx/gl/gl_implementation_mac.cc b/app/gfx/gl/gl_implementation_mac.cc index 417c356..66562ca 100644 --- a/app/gfx/gl/gl_implementation_mac.cc +++ b/app/gfx/gl/gl_implementation_mac.cc @@ -35,7 +35,7 @@ bool InitializeGLBindings(GLImplementation implementation) { base::NativeLibrary library = base::LoadNativeLibrary( module_path.Append("osmesa.so")); if (!library) { - DLOG(INFO) << "osmesa.so not found"; + DVLOG(1) << "osmesa.so not found"; return false; } diff --git a/app/gfx/gl/gl_implementation_win.cc b/app/gfx/gl/gl_implementation_win.cc index ed4178a..42cd9eb 100644 --- a/app/gfx/gl/gl_implementation_win.cc +++ b/app/gfx/gl/gl_implementation_win.cc @@ -45,7 +45,7 @@ bool InitializeGLBindings(GLImplementation implementation) { base::NativeLibrary library = base::LoadNativeLibrary( module_path.Append(L"osmesa.dll")); if (!library) { - DLOG(INFO) << "osmesa.dll not found"; + DVLOG(1) << "osmesa.dll not found"; return false; } @@ -123,7 +123,7 @@ bool InitializeGLBindings(GLImplementation implementation) { base::NativeLibrary library = base::LoadNativeLibrary( FilePath(L"opengl32.dll")); if (!library) { - LOG(INFO) << "opengl32.dll not found"; + VLOG(1) << "opengl32.dll not found"; return false; } diff --git a/app/system_monitor.cc b/app/system_monitor.cc index b0e715a..428ab6c 100644 --- a/app/system_monitor.cc +++ b/app/system_monitor.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. @@ -78,18 +78,18 @@ void SystemMonitor::RemoveObserver(PowerObserver* obs) { } void SystemMonitor::NotifyPowerStateChange() { - LOG(INFO) << L"PowerStateChange: " - << (BatteryPower() ? L"On" : L"Off") << L" battery"; + VLOG(1) << L"PowerStateChange: " << (BatteryPower() ? L"On" : L"Off") + << L" battery"; observer_list_->Notify(&PowerObserver::OnPowerStateChange, BatteryPower()); } void SystemMonitor::NotifySuspend() { - LOG(INFO) << L"Power Suspending"; + VLOG(1) << L"Power Suspending"; observer_list_->Notify(&PowerObserver::OnSuspend); } void SystemMonitor::NotifyResume() { - LOG(INFO) << L"Power Resuming"; + VLOG(1) << L"Power Resuming"; observer_list_->Notify(&PowerObserver::OnResume); } |