Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: chrome/browser/chromeos/dbus/power_manager_client.cc

Issue 9363045: Revert 121920 - dbus: add ObjectPath type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/dbus/power_manager_client.h" 5 #include "chrome/browser/chromeos/dbus/power_manager_client.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/format_macros.h" 11 #include "base/format_macros.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/observer_list.h" 13 #include "base/observer_list.h"
14 #include "base/stringprintf.h" 14 #include "base/stringprintf.h"
15 #include "base/time.h" 15 #include "base/time.h"
16 #include "base/timer.h" 16 #include "base/timer.h"
17 #include "chrome/browser/chromeos/login/screen_locker.h" 17 #include "chrome/browser/chromeos/login/screen_locker.h"
18 #include "chrome/browser/chromeos/system/runtime_environment.h" 18 #include "chrome/browser/chromeos/system/runtime_environment.h"
19 #include "dbus/bus.h" 19 #include "dbus/bus.h"
20 #include "dbus/message.h" 20 #include "dbus/message.h"
21 #include "dbus/object_path.h"
22 #include "dbus/object_proxy.h" 21 #include "dbus/object_proxy.h"
23 #include "third_party/cros_system_api/dbus/service_constants.h" 22 #include "third_party/cros_system_api/dbus/service_constants.h"
24 23
25 namespace chromeos { 24 namespace chromeos {
26 25
27 PowerSupplyStatus::PowerSupplyStatus() 26 PowerSupplyStatus::PowerSupplyStatus()
28 : line_power_on(false), 27 : line_power_on(false),
29 battery_is_present(false), 28 battery_is_present(false),
30 battery_is_full(false), 29 battery_is_full(false),
31 battery_seconds_to_empty(0), 30 battery_seconds_to_empty(0),
(...skipping 25 matching lines...) Expand all
57 } 56 }
58 57
59 // The PowerManagerClient implementation used in production. 58 // The PowerManagerClient implementation used in production.
60 class PowerManagerClientImpl : public PowerManagerClient { 59 class PowerManagerClientImpl : public PowerManagerClient {
61 public: 60 public:
62 explicit PowerManagerClientImpl(dbus::Bus* bus) 61 explicit PowerManagerClientImpl(dbus::Bus* bus)
63 : power_manager_proxy_(NULL), 62 : power_manager_proxy_(NULL),
64 weak_ptr_factory_(this) { 63 weak_ptr_factory_(this) {
65 power_manager_proxy_ = bus->GetObjectProxy( 64 power_manager_proxy_ = bus->GetObjectProxy(
66 power_manager::kPowerManagerServiceName, 65 power_manager::kPowerManagerServiceName,
67 dbus::ObjectPath(power_manager::kPowerManagerServicePath)); 66 power_manager::kPowerManagerServicePath);
68 67
69 // Monitor the D-Bus signal for brightness changes. Only the power 68 // Monitor the D-Bus signal for brightness changes. Only the power
70 // manager knows the actual brightness level. We don't cache the 69 // manager knows the actual brightness level. We don't cache the
71 // brightness level in Chrome as it'll make things less reliable. 70 // brightness level in Chrome as it'll make things less reliable.
72 power_manager_proxy_->ConnectToSignal( 71 power_manager_proxy_->ConnectToSignal(
73 power_manager::kPowerManagerInterface, 72 power_manager::kPowerManagerInterface,
74 power_manager::kBrightnessChangedSignal, 73 power_manager::kBrightnessChangedSignal,
75 base::Bind(&PowerManagerClientImpl::BrightnessChangedReceived, 74 base::Bind(&PowerManagerClientImpl::BrightnessChangedReceived,
76 weak_ptr_factory_.GetWeakPtr()), 75 weak_ptr_factory_.GetWeakPtr()),
77 base::Bind(&PowerManagerClientImpl::SignalConnected, 76 base::Bind(&PowerManagerClientImpl::SignalConnected,
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 566
568 PowerManagerClient* PowerManagerClient::Create(dbus::Bus* bus) { 567 PowerManagerClient* PowerManagerClient::Create(dbus::Bus* bus) {
569 if (system::runtime_environment::IsRunningOnChromeOS()) { 568 if (system::runtime_environment::IsRunningOnChromeOS()) {
570 return new PowerManagerClientImpl(bus); 569 return new PowerManagerClientImpl(bus);
571 } else { 570 } else {
572 return new PowerManagerClientStubImpl(); 571 return new PowerManagerClientStubImpl();
573 } 572 }
574 } 573 }
575 574
576 } // namespace chromeos 575 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698