blob: bed3805fd920eb11586c9f3b3982af4c3a5c9757 [file] [log] [blame]
// 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.
#include "config.h"
#include "modules/battery/BatteryStatus.h"
#include <limits>
namespace WebCore {
PassRefPtrWillBeRawPtr<BatteryStatus> BatteryStatus::create()
{
return adoptRefWillBeNoop(new BatteryStatus);
}
PassRefPtrWillBeRawPtr<BatteryStatus> BatteryStatus::create(bool charging, double chargingTime, double dischargingTime, double level)
{
return adoptRefWillBeNoop(new BatteryStatus(charging, chargingTime, dischargingTime, level));
}
BatteryStatus::BatteryStatus()
: m_charging(true)
, m_chargingTime(0)
, m_dischargingTime(std::numeric_limits<double>::infinity())
, m_level(1)
{
}
BatteryStatus::BatteryStatus(bool charging, double chargingTime, double dischargingTime, double level)
: m_charging(charging)
, m_chargingTime(chargingTime)
, m_dischargingTime(dischargingTime)
, m_level(level)
{
}
} // namespace WebCore