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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: public/platform/WebBatteryStatus.h
diff --git a/public/platform/WebBatteryStatus.h b/public/platform/WebBatteryStatus.h
new file mode 100644
index 0000000000000000000000000000000000000000..12af2be23d6833fce7d26fc85e1f779dc6d20e54
--- /dev/null
+++ b/public/platform/WebBatteryStatus.h
@@ -0,0 +1,28 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebBatteryStatus_h
+#define WebBatteryStatus_h
+
+namespace blink {
+
+class WebBatteryStatus {
+public:
+ 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
+ : 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
+ , chargingTime(0.0)
+ , dischargingTime(0.0)
+ , level(0.0)
+ {
+ }
+
+ bool charging;
+ double chargingTime;
+ double dischargingTime;
+ double level;
+};
+
+} // namespace blink
+
+#endif // WebBatteryStatus_h
« 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