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

Side by Side Diff: public/platform/WebBatteryStatus.h

Issue 246773007: Add setBatteryListener into Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add double space between sections. Created 6 years, 8 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
« no previous file with comments | « public/platform/WebBatteryListener.h ('k') | public/platform/WebBatteryStatusListener.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 WebBatteryStatus_h 5 #ifndef WebBatteryStatus_h
6 #define WebBatteryStatus_h 6 #define WebBatteryStatus_h
7 7
8 #include <limits>
9
8 namespace blink { 10 namespace blink {
9 11
10 class WebBatteryStatus { 12 class WebBatteryStatus {
11 public: 13 public:
12 WebBatteryStatus() 14 WebBatteryStatus()
13 : charging(true) 15 : charging(true)
14 , chargingTime(0.0) 16 , chargingTime(0.0)
15 , dischargingTime(std::numeric_limits<double>::infinity()) 17 , dischargingTime(std::numeric_limits<double>::infinity())
16 , level(1.0) 18 , level(1.0)
17 { 19 {
18 } 20 }
19 21
20 bool charging; 22 bool charging;
21 double chargingTime; 23 double chargingTime;
22 double dischargingTime; 24 double dischargingTime;
23 double level; 25 double level;
24 }; 26 };
25 27
26 } // namespace blink 28 } // namespace blink
27 29
28 #endif // WebBatteryStatus_h 30 #endif // WebBatteryStatus_h
OLDNEW
« no previous file with comments | « public/platform/WebBatteryListener.h ('k') | public/platform/WebBatteryStatusListener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698