2011-11-02 15:01:32 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-02 15:01:32 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_battery_Constants_h__
|
|
|
|
#define mozilla_dom_battery_Constants_h__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A set of constants that might need to be used by battery backends.
|
|
|
|
* It's not part of BatteryManager.h to prevent those backends to include it.
|
|
|
|
*/
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace battery {
|
|
|
|
|
2011-11-09 08:57:57 +00:00
|
|
|
static const double kDefaultLevel = 1.0;
|
|
|
|
static const bool kDefaultCharging = true;
|
2011-12-01 10:49:42 +00:00
|
|
|
static const double kDefaultRemainingTime = 0;
|
2011-11-09 08:57:57 +00:00
|
|
|
static const double kUnknownRemainingTime = -1;
|
2011-11-02 15:01:32 +00:00
|
|
|
|
|
|
|
} // namespace battery
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_battery_Constants_h__
|