Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WebBatteryStatus_h | |
| 6 #define WebBatteryStatus_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 class WebBatteryStatus { | |
| 11 public: | |
| 12 WebBatteryStatus() | |
| 13 : charging(true) | |
| 14 , chargingTime(0.0) | |
| 15 , dischargingTime(std::numeric_limits<double>::infinity()) | |
| 16 , level(1.0) | |
| 17 { | |
| 18 } | |
| 19 | |
| 20 bool charging; | |
| 21 double chargingTime; | |
| 22 double dischargingTime; | |
| 23 double level; | |
| 24 }; | |
| 25 | |
| 26 } // namespace blink | |
| 27 | |
| 28 #endif // WebBatteryStatus_h | |
| OLD | NEW |