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

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

Issue 212643010: Add Dispatcher class to the Battery Status API module. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 namespace blink {
9
10 class WebBatteryStatus {
11 public:
12 WebBatteryStatus()
timvolodine 2014/04/02 14:24:51 we'll probably need a corresponding .cpp file, but
Srini 2014/04/02 17:25:36 I don't understand completly, but Im still catchin
13 : charging(true)
timvolodine 2014/04/02 14:24:51 if the idea is to set the values to 'undefined; it
Srini 2014/04/02 17:25:36 Yes, that is what I remembered to have set everywh
14 , chargingTime(0.0)
15 , dischargingTime(0.0)
16 , level(0.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
OLDNEW
« Source/modules/battery/BatteryManager.cpp ('K') | « public/platform/WebBatteryListener.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698