From 4d9ae4ab9dd6d4f27c5cef5481f41979b3d58d1b Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Thu, 1 Oct 2009 17:59:38 +0000 Subject: Simplify the PowerObserver API by removing unneeded args and providing default implementations. This also makes all the subclasses use the same code to add/remove observers. BUG=none TEST=none Review URL: http://codereview.chromium.org/244054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27740 0039d316-1c4b-4281-b951-d872f2087c98 --- base/system_monitor.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/system_monitor.cc') diff --git a/base/system_monitor.cc b/base/system_monitor.cc index cf946a7..44cdce5 100644 --- a/base/system_monitor.cc +++ b/base/system_monitor.cc @@ -60,17 +60,17 @@ void SystemMonitor::RemoveObserver(PowerObserver* obs) { void SystemMonitor::NotifyPowerStateChange() { LOG(INFO) << L"PowerStateChange: " << (BatteryPower() ? L"On" : L"Off") << L" battery"; - observer_list_->Notify(&PowerObserver::OnPowerStateChange, this); + observer_list_->Notify(&PowerObserver::OnPowerStateChange, BatteryPower()); } void SystemMonitor::NotifySuspend() { LOG(INFO) << L"Power Suspending"; - observer_list_->Notify(&PowerObserver::OnSuspend, this); + observer_list_->Notify(&PowerObserver::OnSuspend); } void SystemMonitor::NotifyResume() { LOG(INFO) << L"Power Resuming"; - observer_list_->Notify(&PowerObserver::OnResume, this); + observer_list_->Notify(&PowerObserver::OnResume); } // static -- cgit v1.1