OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ | 5 #ifndef ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ |
6 #define ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ | 6 #define ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
(...skipping 105 matching lines...) Loading... |
116 // Returns true if line power (including a charger of any type) is connected. | 116 // Returns true if line power (including a charger of any type) is connected. |
117 bool IsLinePowerConnected() const; | 117 bool IsLinePowerConnected() const; |
118 | 118 |
119 // Returns true if an official, non-USB charger is connected. | 119 // Returns true if an official, non-USB charger is connected. |
120 bool IsMainsChargerConnected() const; | 120 bool IsMainsChargerConnected() const; |
121 | 121 |
122 // Returns true if a USB charger (which is likely to only support a low | 122 // Returns true if a USB charger (which is likely to only support a low |
123 // charging rate) is connected. | 123 // charging rate) is connected. |
124 bool IsUsbChargerConnected() const; | 124 bool IsUsbChargerConnected() const; |
125 | 125 |
| 126 // Returns true if an original spring charger is connected. |
| 127 bool IsOriginalSpringChargerConnected() const; |
| 128 |
126 // Returns the image that should be shown for the battery's current state. | 129 // Returns the image that should be shown for the battery's current state. |
127 gfx::ImageSkia GetBatteryImage(IconSet icon_set) const; | 130 gfx::ImageSkia GetBatteryImage(IconSet icon_set) const; |
128 | 131 |
129 // Returns an string describing the current state for accessibility. | 132 // Returns an string describing the current state for accessibility. |
130 base::string16 GetAccessibleNameString() const; | 133 base::string16 GetAccessibleNameString() const; |
131 | 134 |
132 // Updates |proto_|. Does not notify observers. | 135 // Updates |proto_|. Does not notify observers. |
133 void SetProtoForTesting(const power_manager::PowerSupplyProperties& proto); | 136 void SetProtoForTesting(const power_manager::PowerSupplyProperties& proto); |
134 | 137 |
135 protected: | 138 protected: |
(...skipping 10 matching lines...) Loading... |
146 // Current state. | 149 // Current state. |
147 power_manager::PowerSupplyProperties proto_; | 150 power_manager::PowerSupplyProperties proto_; |
148 | 151 |
149 DISALLOW_COPY_AND_ASSIGN(PowerStatus); | 152 DISALLOW_COPY_AND_ASSIGN(PowerStatus); |
150 }; | 153 }; |
151 | 154 |
152 } // namespace internal | 155 } // namespace internal |
153 } // namespace ash | 156 } // namespace ash |
154 | 157 |
155 #endif // ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ | 158 #endif // ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_H_ |
OLD | NEW |