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

Side by Side Diff: third_party/WebKit/Source/modules/battery/BatteryStatus.cpp

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, 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 #include "modules/battery/BatteryStatus.h"
6
7 #include <limits>
8
9 namespace blink {
10
11 BatteryStatus* BatteryStatus::create()
12 {
13 return new BatteryStatus;
14 }
15
16 BatteryStatus* BatteryStatus::create(bool charging, double chargingTime, double dischargingTime, double level)
17 {
18 return new BatteryStatus(charging, chargingTime, dischargingTime, level);
19 }
20
21 BatteryStatus::BatteryStatus()
22 : m_charging(true)
23 , m_chargingTime(0)
24 , m_dischargingTime(std::numeric_limits<double>::infinity())
25 , m_level(1)
26 {
27 }
28
29 BatteryStatus::BatteryStatus(bool charging, double chargingTime, double discharg ingTime, double level)
30 : m_charging(charging)
31 , m_chargingTime(chargingTime)
32 , m_dischargingTime(dischargingTime)
33 , m_level(level)
34 {
35 }
36
37 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/battery/BatteryStatus.h ('k') | third_party/WebKit/Source/modules/battery/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698