summaryrefslogtreecommitdiffstats
path: root/app/system_monitor.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 00:42:51 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 00:42:51 +0000
commit0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8 (patch)
tree7fe292f7316af7b9e983f37bb42d8039eb280027 /app/system_monitor.cc
parent7d08c5e739696ca1956fd6539f235f4cdb586959 (diff)
downloadchromium_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/system_monitor.cc')
-rw-r--r--app/system_monitor.cc10
1 files changed, 5 insertions, 5 deletions
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);
}