mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 769571 - Unprefix Battery API. r=sicking sr=smaug
--HG-- rename : dom/battery/nsIDOMNavigatorBattery.idl => dom/battery/nsINavigatorBattery.idl
This commit is contained in:
parent
c84d60f166
commit
76d382c04f
@ -98,7 +98,7 @@ NS_INTERFACE_MAP_BEGIN(Navigator)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMClientInformation)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMNavigatorDeviceStorage)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMNavigatorGeolocation)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMMozNavigatorBattery)
|
||||
NS_INTERFACE_MAP_ENTRY(nsINavigatorBattery)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMNavigatorDesktopNotification)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMMozNavigatorSms)
|
||||
#ifdef MOZ_MEDIA_NAVIGATOR
|
||||
@ -1002,11 +1002,11 @@ NS_IMETHODIMP Navigator::GetMozNotification(nsIDOMDesktopNotificationCenter** aR
|
||||
}
|
||||
|
||||
//*****************************************************************************
|
||||
// Navigator::nsIDOMNavigatorBattery
|
||||
// Navigator::nsINavigatorBattery
|
||||
//*****************************************************************************
|
||||
|
||||
NS_IMETHODIMP
|
||||
Navigator::GetMozBattery(nsIDOMMozBatteryManager** aBattery)
|
||||
Navigator::GetBattery(nsIDOMBatteryManager** aBattery)
|
||||
{
|
||||
if (!mBatteryManager) {
|
||||
*aBattery = nsnull;
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "nsIDOMNavigatorDeviceStorage.h"
|
||||
#include "nsIDOMNavigatorDesktopNotification.h"
|
||||
#include "nsIDOMClientInformation.h"
|
||||
#include "nsIDOMNavigatorBattery.h"
|
||||
#include "nsINavigatorBattery.h"
|
||||
#include "nsIDOMNavigatorSms.h"
|
||||
#include "nsIDOMNavigatorNetwork.h"
|
||||
#include "nsAutoPtr.h"
|
||||
@ -69,7 +69,7 @@ class Navigator : public nsIDOMNavigator
|
||||
, public nsIDOMNavigatorDeviceStorage
|
||||
, public nsIDOMNavigatorGeolocation
|
||||
, public nsIDOMNavigatorDesktopNotification
|
||||
, public nsIDOMMozNavigatorBattery
|
||||
, public nsINavigatorBattery
|
||||
, public nsIDOMMozNavigatorSms
|
||||
#ifdef MOZ_MEDIA_NAVIGATOR
|
||||
, public nsIDOMNavigatorUserMedia
|
||||
@ -93,7 +93,7 @@ public:
|
||||
NS_DECL_NSIDOMNAVIGATORDEVICESTORAGE
|
||||
NS_DECL_NSIDOMNAVIGATORGEOLOCATION
|
||||
NS_DECL_NSIDOMNAVIGATORDESKTOPNOTIFICATION
|
||||
NS_DECL_NSIDOMMOZNAVIGATORBATTERY
|
||||
NS_DECL_NSINAVIGATORBATTERY
|
||||
NS_DECL_NSIDOMMOZNAVIGATORSMS
|
||||
#ifdef MOZ_MEDIA_NAVIGATOR
|
||||
NS_DECL_NSIDOMNAVIGATORUSERMEDIA
|
||||
|
@ -1454,7 +1454,7 @@ static nsDOMClassInfoData sClassInfoData[] = {
|
||||
NS_DEFINE_CLASSINFO_DATA(GeoPositionError, nsDOMGenericSH,
|
||||
DOM_DEFAULT_SCRIPTABLE_FLAGS)
|
||||
|
||||
NS_DEFINE_CLASSINFO_DATA(MozBatteryManager, nsDOMGenericSH,
|
||||
NS_DEFINE_CLASSINFO_DATA(BatteryManager, nsDOMGenericSH,
|
||||
DOM_DEFAULT_SCRIPTABLE_FLAGS)
|
||||
|
||||
NS_DEFINE_CLASSINFO_DATA(MozPowerManager, nsDOMGenericSH,
|
||||
@ -2471,7 +2471,7 @@ nsDOMClassInfo::Init()
|
||||
DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsIDOMNavigatorDesktopNotification,
|
||||
Navigator::HasDesktopNotificationSupport())
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMClientInformation)
|
||||
DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsIDOMMozNavigatorBattery,
|
||||
DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsINavigatorBattery,
|
||||
battery::BatteryManager::HasSupport())
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMMozNavigatorSms)
|
||||
#ifdef MOZ_MEDIA_NAVIGATOR
|
||||
@ -4105,8 +4105,8 @@ nsDOMClassInfo::Init()
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMGeoPositionError)
|
||||
DOM_CLASSINFO_MAP_END
|
||||
|
||||
DOM_CLASSINFO_MAP_BEGIN(MozBatteryManager, nsIDOMMozBatteryManager)
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMMozBatteryManager)
|
||||
DOM_CLASSINFO_MAP_BEGIN(BatteryManager, nsIDOMBatteryManager)
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMBatteryManager)
|
||||
DOM_CLASSINFO_MAP_ENTRY(nsIDOMEventTarget)
|
||||
DOM_CLASSINFO_MAP_END
|
||||
|
||||
|
@ -397,7 +397,7 @@ DOMCI_CLASS(GeoPosition)
|
||||
DOMCI_CLASS(GeoPositionCoords)
|
||||
DOMCI_CLASS(GeoPositionError)
|
||||
|
||||
DOMCI_CLASS(MozBatteryManager)
|
||||
DOMCI_CLASS(BatteryManager)
|
||||
|
||||
DOMCI_CLASS(MozPowerManager)
|
||||
DOMCI_CLASS(MozWakeLock)
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define DISCHARGINGTIMECHANGE_EVENT_NAME NS_LITERAL_STRING("dischargingtimechange")
|
||||
#define CHARGINGTIMECHANGE_EVENT_NAME NS_LITERAL_STRING("chargingtimechange")
|
||||
|
||||
DOMCI_DATA(MozBatteryManager, mozilla::dom::battery::BatteryManager)
|
||||
DOMCI_DATA(BatteryManager, mozilla::dom::battery::BatteryManager)
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
@ -46,8 +46,8 @@ NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(BatteryManager,
|
||||
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
||||
|
||||
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(BatteryManager)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMMozBatteryManager)
|
||||
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(MozBatteryManager)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIDOMBatteryManager)
|
||||
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(BatteryManager)
|
||||
NS_INTERFACE_MAP_END_INHERITING(nsDOMEventTargetHelper)
|
||||
|
||||
NS_IMPL_ADDREF_INHERITED(BatteryManager, nsDOMEventTargetHelper)
|
||||
|
@ -26,12 +26,12 @@ namespace dom {
|
||||
namespace battery {
|
||||
|
||||
class BatteryManager : public nsDOMEventTargetHelper
|
||||
, public nsIDOMMozBatteryManager
|
||||
, public nsIDOMBatteryManager
|
||||
, public BatteryObserver
|
||||
{
|
||||
public:
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIDOMMOZBATTERYMANAGER
|
||||
NS_DECL_NSIDOMBATTERYMANAGER
|
||||
NS_FORWARD_NSIDOMEVENTTARGET(nsDOMEventTargetHelper::)
|
||||
|
||||
BatteryManager();
|
||||
|
@ -33,7 +33,7 @@ LOCAL_INCLUDES = \
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMBatteryManager.idl \
|
||||
nsIDOMNavigatorBattery.idl \
|
||||
nsINavigatorBattery.idl \
|
||||
$(NULL)
|
||||
|
||||
TEST_DIRS += test
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
interface nsIDOMEventListener;
|
||||
|
||||
[scriptable, builtinclass, uuid(41e88f87-42cb-4db1-8724-f5456a16c410)]
|
||||
interface nsIDOMMozBatteryManager : nsIDOMEventTarget
|
||||
[scriptable, builtinclass, uuid(03c6dd20-7efd-4640-b958-c0ce11b9aadf)]
|
||||
interface nsIDOMBatteryManager : nsIDOMEventTarget
|
||||
{
|
||||
readonly attribute double level;
|
||||
readonly attribute boolean charging;
|
||||
|
@ -4,10 +4,10 @@
|
||||
|
||||
#include "nsISupports.idl"
|
||||
|
||||
interface nsIDOMMozBatteryManager;
|
||||
interface nsIDOMBatteryManager;
|
||||
|
||||
[scriptable, uuid(c295f049-be3d-4f83-9f7c-5c3e91d6ecb9)]
|
||||
interface nsIDOMMozNavigatorBattery : nsISupports
|
||||
[scriptable, uuid(4a78a8d5-5bbb-4a92-ad97-f19e853a7008)]
|
||||
interface nsINavigatorBattery : nsISupports
|
||||
{
|
||||
readonly attribute nsIDOMMozBatteryManager mozBattery;
|
||||
readonly attribute nsIDOMBatteryManager battery;
|
||||
};
|
@ -3,7 +3,7 @@
|
||||
|
||||
MARIONETTE_TIMEOUT = 10000;
|
||||
|
||||
let battery = window.navigator.mozBattery;
|
||||
let battery = window.navigator.battery;
|
||||
ok(battery);
|
||||
|
||||
/**
|
||||
|
@ -14,15 +14,9 @@
|
||||
|
||||
/** Test for Battery API **/
|
||||
|
||||
// Testing prefixing.
|
||||
ok(!("NavigatorBattery" in window), "NavigatorBattery shouldn't be visible");
|
||||
ok(("MozNavigatorBattery" in window), "MozNavigatorBattery should be visible");
|
||||
ok(!("BatteryManager" in window), "BatteryManager shouldn't be visible");
|
||||
ok(("MozBatteryManager" in window), "MozBatteryManager should be visible");
|
||||
ok('battery' in navigator, "navigator.battery should exist");
|
||||
|
||||
ok('mozBattery' in navigator, "navigator.mozBattery should exist");
|
||||
|
||||
var battery = navigator.mozBattery;
|
||||
var battery = navigator.battery;
|
||||
is(battery.level, 1.0, "Default battery level should be 1.0");
|
||||
is(battery.charging, true, "Default charging value should be true");
|
||||
is(battery.dischargingTime, Infinity, "Default dischargingTime should be Inifinity");
|
||||
|
@ -25,7 +25,7 @@ var interfaceNamesInGlobalScope =
|
||||
"MozApplicationEvent",
|
||||
"HTMLByteRanges",
|
||||
"URL",
|
||||
"MozBatteryManager",
|
||||
"BatteryManager",
|
||||
"HTMLStyleElement",
|
||||
"PropertyNodeList",
|
||||
"SVGPatternElement",
|
||||
@ -324,7 +324,6 @@ var interfaceNamesInGlobalScope =
|
||||
"Navigator",
|
||||
"SVGPathSegCurvetoQuadraticSmoothAbs",
|
||||
"HTMLButtonElement",
|
||||
"MozNavigatorBattery",
|
||||
"WebGLProgram",
|
||||
"SVGPointList",
|
||||
"SVGFEColorMatrixElement",
|
||||
|
Loading…
Reference in New Issue
Block a user