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

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

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. Created 4 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
OLDNEW
(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 #include <limits>
9
10 namespace blink {
11
12 class WebBatteryStatus {
13 public:
14 WebBatteryStatus()
15 : charging(true)
16 , chargingTime(0.0)
17 , dischargingTime(std::numeric_limits<double>::infinity())
18 , level(1.0)
19 {
20 }
21
22 bool charging;
23 double chargingTime;
24 double dischargingTime;
25 double level;
26 };
27
28 } // namespace blink
29
30 #endif // WebBatteryStatus_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/Platform.h ('k') | third_party/WebKit/public/platform/WebBatteryStatusListener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698