2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 17:44:16 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_Navigator_h
|
|
|
|
#define mozilla_dom_Navigator_h
|
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2014-03-06 19:51:23 +04:00
|
|
|
#include "mozilla/dom/Nullable.h"
|
2013-08-15 22:17:48 +04:00
|
|
|
#include "mozilla/ErrorResult.h"
|
2011-11-02 17:44:16 +04:00
|
|
|
#include "nsIDOMNavigator.h"
|
2013-07-18 07:23:52 +04:00
|
|
|
#include "nsIMozNavigatorNetwork.h"
|
2013-06-20 22:34:38 +04:00
|
|
|
#include "nsWrapperCache.h"
|
2014-03-21 07:19:43 +04:00
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsInterfaceHashtable.h"
|
2013-08-15 22:17:48 +04:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsTArray.h"
|
2015-08-18 14:42:14 +03:00
|
|
|
#include "nsWeakPtr.h"
|
2014-11-18 12:13:02 +03:00
|
|
|
#ifdef MOZ_EME
|
2015-03-31 10:50:01 +03:00
|
|
|
#include "mozilla/dom/MediaKeySystemAccessManager.h"
|
2014-11-18 12:13:02 +03:00
|
|
|
#endif
|
2011-11-02 17:44:16 +04:00
|
|
|
|
|
|
|
class nsPluginArray;
|
|
|
|
class nsMimeTypeArray;
|
2016-01-30 20:05:36 +03:00
|
|
|
class nsPIDOMWindowInner;
|
2013-08-15 22:17:48 +04:00
|
|
|
class nsIDOMNavigatorSystemMessages;
|
|
|
|
class nsDOMCameraManager;
|
|
|
|
class nsDOMDeviceStorage;
|
2014-03-12 13:03:05 +04:00
|
|
|
class nsIPrincipal;
|
2014-09-24 20:09:50 +04:00
|
|
|
class nsIURI;
|
2011-11-02 17:44:16 +04:00
|
|
|
|
2013-04-12 22:46:36 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-04-12 22:47:47 +04:00
|
|
|
class Geolocation;
|
2013-07-12 18:35:44 +04:00
|
|
|
class systemMessageCallback;
|
2014-09-20 10:20:41 +04:00
|
|
|
class MediaDevices;
|
2014-06-19 04:57:51 +04:00
|
|
|
struct MediaStreamConstraints;
|
2014-01-07 16:16:07 +04:00
|
|
|
class WakeLock;
|
2014-03-06 19:51:23 +04:00
|
|
|
class ArrayBufferViewOrBlobOrStringOrFormData;
|
2014-08-19 17:56:00 +04:00
|
|
|
class ServiceWorkerContainer;
|
2016-01-26 20:38:03 +03:00
|
|
|
class DOMRequest;
|
2016-06-02 09:47:00 +03:00
|
|
|
struct FlyWebPublishOptions;
|
|
|
|
struct FlyWebFilter;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-04-12 22:46:36 +04:00
|
|
|
|
2011-11-02 17:44:16 +04:00
|
|
|
//*****************************************************************************
|
|
|
|
// Navigator: Script "navigator" object
|
|
|
|
//*****************************************************************************
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-07-28 16:33:46 +03:00
|
|
|
class Permissions;
|
|
|
|
|
2011-11-02 19:27:06 +04:00
|
|
|
namespace battery {
|
|
|
|
class BatteryManager;
|
|
|
|
} // namespace battery
|
|
|
|
|
2013-09-04 02:26:33 +04:00
|
|
|
#ifdef MOZ_B2G_FM
|
|
|
|
class FMRadio;
|
|
|
|
#endif
|
|
|
|
|
2013-10-02 21:27:07 +04:00
|
|
|
class Promise;
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
class DesktopNotificationCenter;
|
2013-03-09 11:21:47 +04:00
|
|
|
class MobileMessageManager;
|
2013-07-12 18:35:35 +04:00
|
|
|
class MozIdleObserver;
|
2013-07-12 18:36:32 +04:00
|
|
|
#ifdef MOZ_GAMEPAD
|
|
|
|
class Gamepad;
|
2016-06-28 01:26:00 +03:00
|
|
|
class GamepadServiceTest;
|
2013-07-12 18:36:32 +04:00
|
|
|
#endif // MOZ_GAMEPAD
|
2013-09-16 10:34:57 +04:00
|
|
|
class NavigatorUserMediaSuccessCallback;
|
|
|
|
class NavigatorUserMediaErrorCallback;
|
2013-07-12 18:37:21 +04:00
|
|
|
class MozGetUserMediaDevicesSuccessCallback;
|
2011-11-25 04:48:57 +04:00
|
|
|
|
2012-01-16 21:14:56 +04:00
|
|
|
namespace network {
|
|
|
|
class Connection;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace network
|
2012-01-16 21:14:56 +04:00
|
|
|
|
2013-08-12 12:31:58 +04:00
|
|
|
#ifdef MOZ_B2G_BT
|
|
|
|
namespace bluetooth {
|
|
|
|
class BluetoothManager;
|
|
|
|
} // namespace bluetooth
|
|
|
|
#endif // MOZ_B2G_BT
|
|
|
|
|
2013-09-03 18:38:53 +04:00
|
|
|
#ifdef MOZ_B2G_RIL
|
2014-01-02 07:06:17 +04:00
|
|
|
class MobileConnectionArray;
|
2013-09-03 18:38:53 +04:00
|
|
|
#endif
|
|
|
|
|
2012-01-20 07:24:00 +04:00
|
|
|
class PowerManager;
|
2014-08-25 13:24:03 +04:00
|
|
|
class CellBroadcast;
|
2015-01-14 09:43:32 +03:00
|
|
|
class IccManager;
|
2013-10-29 12:12:38 +04:00
|
|
|
class Telephony;
|
2014-09-26 09:00:23 +04:00
|
|
|
class Voicemail;
|
2014-08-21 13:15:18 +04:00
|
|
|
class TVManager;
|
2015-04-08 10:07:00 +03:00
|
|
|
class InputPortManager;
|
2015-05-04 09:11:00 +03:00
|
|
|
class DeviceStorageAreaListener;
|
2015-03-19 10:48:28 +03:00
|
|
|
class Presentation;
|
2015-03-25 17:35:59 +03:00
|
|
|
class LegacyMozTCPSocket;
|
2016-02-25 02:54:50 +03:00
|
|
|
class VRDisplay;
|
2012-01-20 07:24:00 +04:00
|
|
|
|
2012-09-11 10:05:00 +04:00
|
|
|
namespace time {
|
|
|
|
class TimeManager;
|
|
|
|
} // namespace time
|
|
|
|
|
2012-11-30 02:52:03 +04:00
|
|
|
namespace system {
|
|
|
|
#ifdef MOZ_AUDIO_CHANNEL_MANAGER
|
|
|
|
class AudioChannelManager;
|
|
|
|
#endif
|
|
|
|
} // namespace system
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class Navigator final : public nsIDOMNavigator
|
2015-03-27 21:52:19 +03:00
|
|
|
, public nsIMozNavigatorNetwork
|
|
|
|
, public nsWrapperCache
|
2011-11-02 17:44:16 +04:00
|
|
|
{
|
|
|
|
public:
|
2016-01-30 20:05:36 +03:00
|
|
|
explicit Navigator(nsPIDOMWindowInner* aInnerWindow);
|
2011-11-02 17:44:16 +04:00
|
|
|
|
2013-06-20 22:34:38 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(Navigator,
|
|
|
|
nsIDOMNavigator)
|
2011-11-02 17:44:16 +04:00
|
|
|
NS_DECL_NSIDOMNAVIGATOR
|
2013-07-18 07:23:52 +04:00
|
|
|
NS_DECL_NSIMOZNAVIGATORNETWORK
|
2012-02-20 19:15:19 +04:00
|
|
|
|
2011-11-02 17:44:16 +04:00
|
|
|
static void Init();
|
|
|
|
|
2011-12-01 12:28:16 +04:00
|
|
|
void Invalidate();
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowInner *GetWindow() const
|
2013-06-20 22:34:38 +04:00
|
|
|
{
|
|
|
|
return mWindow;
|
|
|
|
}
|
2011-11-02 17:44:16 +04:00
|
|
|
|
2011-12-01 12:28:16 +04:00
|
|
|
void RefreshMIMEArray();
|
2011-11-02 17:44:16 +04:00
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2011-11-02 17:44:16 +04:00
|
|
|
|
2011-12-28 17:39:55 +04:00
|
|
|
/**
|
|
|
|
* For use during document.write where our inner window changes.
|
|
|
|
*/
|
2016-01-30 20:05:36 +03:00
|
|
|
void SetWindow(nsPIDOMWindowInner *aInnerWindow);
|
2011-12-28 17:39:55 +04:00
|
|
|
|
2012-06-03 11:35:15 +04:00
|
|
|
/**
|
|
|
|
* Called when the inner window navigates to a new page.
|
|
|
|
*/
|
|
|
|
void OnNavigation();
|
|
|
|
|
2013-07-12 18:35:35 +04:00
|
|
|
// The XPCOM GetProduct is OK
|
|
|
|
// The XPCOM GetLanguage is OK
|
2016-03-19 00:15:46 +03:00
|
|
|
void GetUserAgent(nsString& aUserAgent, ErrorResult& /* unused */)
|
|
|
|
{
|
|
|
|
GetUserAgent(aUserAgent);
|
|
|
|
}
|
2013-07-12 18:35:35 +04:00
|
|
|
bool OnLine();
|
|
|
|
void RegisterProtocolHandler(const nsAString& aScheme, const nsAString& aURL,
|
2013-07-18 07:23:52 +04:00
|
|
|
const nsAString& aTitle, ErrorResult& aRv);
|
2013-07-12 18:35:35 +04:00
|
|
|
void RegisterContentHandler(const nsAString& aMIMEType, const nsAString& aURL,
|
2013-07-18 07:23:52 +04:00
|
|
|
const nsAString& aTitle, ErrorResult& aRv);
|
2013-07-12 18:35:35 +04:00
|
|
|
nsMimeTypeArray* GetMimeTypes(ErrorResult& aRv);
|
|
|
|
nsPluginArray* GetPlugins(ErrorResult& aRv);
|
2015-07-28 16:33:46 +03:00
|
|
|
Permissions* GetPermissions(ErrorResult& aRv);
|
2013-07-12 18:35:35 +04:00
|
|
|
// The XPCOM GetDoNotTrack is ok
|
|
|
|
Geolocation* GetGeolocation(ErrorResult& aRv);
|
2015-08-21 13:29:25 +03:00
|
|
|
Promise* GetBattery(ErrorResult& aRv);
|
2014-02-24 17:57:15 +04:00
|
|
|
|
2016-06-02 09:47:00 +03:00
|
|
|
already_AddRefed<Promise> PublishServer(const nsAString& aName,
|
|
|
|
const FlyWebPublishOptions& aOptions,
|
|
|
|
ErrorResult& aRv);
|
2014-09-23 23:11:18 +04:00
|
|
|
static void AppName(nsAString& aAppName, bool aUsePrefOverriddenValue);
|
|
|
|
|
|
|
|
static nsresult GetPlatform(nsAString& aPlatform,
|
|
|
|
bool aUsePrefOverriddenValue);
|
|
|
|
|
|
|
|
static nsresult GetAppVersion(nsAString& aAppVersion,
|
|
|
|
bool aUsePrefOverriddenValue);
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
static nsresult GetUserAgent(nsPIDOMWindowInner* aWindow,
|
2014-09-24 20:09:50 +04:00
|
|
|
nsIURI* aURI,
|
|
|
|
bool aIsCallerChrome,
|
|
|
|
nsAString& aUserAgent);
|
|
|
|
|
2015-07-21 09:42:00 +03:00
|
|
|
// Clears the user agent cache by calling:
|
|
|
|
// NavigatorBinding::ClearCachedUserAgentValue(this);
|
|
|
|
void ClearUserAgentCache();
|
|
|
|
|
2014-05-12 06:05:03 +04:00
|
|
|
// Feature Detection API
|
2014-07-17 07:53:23 +04:00
|
|
|
already_AddRefed<Promise> GetFeature(const nsAString& aName,
|
2014-07-19 05:31:11 +04:00
|
|
|
ErrorResult& aRv);
|
2014-05-12 06:05:03 +04:00
|
|
|
|
2014-07-24 23:57:02 +04:00
|
|
|
already_AddRefed<Promise> HasFeature(const nsAString &aName,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2013-09-28 22:58:38 +04:00
|
|
|
bool Vibrate(uint32_t aDuration);
|
|
|
|
bool Vibrate(const nsTArray<uint32_t>& aDuration);
|
2016-04-26 16:40:27 +03:00
|
|
|
void SetVibrationPermission(bool aPermitted, bool aPersistent);
|
2014-01-28 20:09:34 +04:00
|
|
|
uint32_t MaxTouchPoints();
|
2013-07-12 18:35:35 +04:00
|
|
|
void GetAppCodeName(nsString& aAppCodeName, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = GetAppCodeName(aAppCodeName);
|
|
|
|
}
|
|
|
|
void GetOscpu(nsString& aOscpu, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = GetOscpu(aOscpu);
|
|
|
|
}
|
|
|
|
// The XPCOM GetVendor is OK
|
|
|
|
// The XPCOM GetVendorSub is OK
|
|
|
|
// The XPCOM GetProductSub is OK
|
|
|
|
bool CookieEnabled();
|
|
|
|
void GetBuildID(nsString& aBuildID, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = GetBuildID(aBuildID);
|
|
|
|
}
|
2013-09-11 18:35:04 +04:00
|
|
|
PowerManager* GetMozPower(ErrorResult& aRv);
|
2013-07-12 18:35:35 +04:00
|
|
|
bool JavaEnabled(ErrorResult& aRv);
|
2016-03-16 22:41:38 +03:00
|
|
|
uint64_t HardwareConcurrency();
|
2013-07-12 18:35:35 +04:00
|
|
|
bool TaintEnabled()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void AddIdleObserver(MozIdleObserver& aObserver, ErrorResult& aRv);
|
|
|
|
void RemoveIdleObserver(MozIdleObserver& aObserver, ErrorResult& aRv);
|
2014-01-07 16:16:07 +04:00
|
|
|
already_AddRefed<WakeLock> RequestWakeLock(const nsAString &aTopic,
|
|
|
|
ErrorResult& aRv);
|
2015-05-04 09:11:00 +03:00
|
|
|
DeviceStorageAreaListener* GetDeviceStorageAreaListener(ErrorResult& aRv);
|
2015-08-18 14:42:14 +03:00
|
|
|
|
|
|
|
already_AddRefed<nsDOMDeviceStorage> GetDeviceStorage(const nsAString& aType,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2013-07-12 18:35:44 +04:00
|
|
|
void GetDeviceStorages(const nsAString& aType,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<nsDOMDeviceStorage> >& aStores,
|
2013-07-12 18:35:44 +04:00
|
|
|
ErrorResult& aRv);
|
2015-08-18 14:42:14 +03:00
|
|
|
|
|
|
|
already_AddRefed<nsDOMDeviceStorage>
|
|
|
|
GetDeviceStorageByNameAndType(const nsAString& aName, const nsAString& aType,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2013-07-12 18:35:44 +04:00
|
|
|
DesktopNotificationCenter* GetMozNotification(ErrorResult& aRv);
|
2014-08-25 13:24:03 +04:00
|
|
|
CellBroadcast* GetMozCellBroadcast(ErrorResult& aRv);
|
2015-01-14 09:43:32 +03:00
|
|
|
IccManager* GetMozIccManager(ErrorResult& aRv);
|
2014-06-25 07:57:16 +04:00
|
|
|
MobileMessageManager* GetMozMobileMessage();
|
2013-10-29 12:12:38 +04:00
|
|
|
Telephony* GetMozTelephony(ErrorResult& aRv);
|
2014-09-26 09:00:23 +04:00
|
|
|
Voicemail* GetMozVoicemail(ErrorResult& aRv);
|
2014-08-21 13:15:18 +04:00
|
|
|
TVManager* GetTv();
|
2015-04-08 10:07:00 +03:00
|
|
|
InputPortManager* GetInputPortManager(ErrorResult& aRv);
|
2015-03-25 17:35:59 +03:00
|
|
|
already_AddRefed<LegacyMozTCPSocket> MozTCPSocket();
|
2014-03-05 07:54:55 +04:00
|
|
|
network::Connection* GetConnection(ErrorResult& aRv);
|
2013-07-12 18:35:44 +04:00
|
|
|
nsDOMCameraManager* GetMozCameras(ErrorResult& aRv);
|
2014-09-20 10:20:41 +04:00
|
|
|
MediaDevices* GetMediaDevices(ErrorResult& aRv);
|
2015-01-13 12:53:22 +03:00
|
|
|
|
2013-07-12 18:36:13 +04:00
|
|
|
#ifdef MOZ_B2G_RIL
|
2014-01-02 07:06:17 +04:00
|
|
|
MobileConnectionArray* GetMozMobileConnections(ErrorResult& aRv);
|
2014-06-27 03:18:21 +04:00
|
|
|
#endif // MOZ_B2G_RIL
|
2013-07-12 18:36:32 +04:00
|
|
|
#ifdef MOZ_GAMEPAD
|
2015-10-18 08:24:48 +03:00
|
|
|
void GetGamepads(nsTArray<RefPtr<Gamepad> >& aGamepads, ErrorResult& aRv);
|
2016-06-28 01:26:00 +03:00
|
|
|
GamepadServiceTest* RequestGamepadServiceTest();
|
2013-07-12 18:36:32 +04:00
|
|
|
#endif // MOZ_GAMEPAD
|
2016-04-13 03:39:28 +03:00
|
|
|
already_AddRefed<Promise> GetVRDisplays(ErrorResult& aRv);
|
|
|
|
void NotifyVRDisplaysUpdated();
|
2013-09-04 02:26:33 +04:00
|
|
|
#ifdef MOZ_B2G_FM
|
|
|
|
FMRadio* GetMozFMRadio(ErrorResult& aRv);
|
|
|
|
#endif
|
2013-07-12 18:36:32 +04:00
|
|
|
#ifdef MOZ_B2G_BT
|
2013-08-12 12:31:58 +04:00
|
|
|
bluetooth::BluetoothManager* GetMozBluetooth(ErrorResult& aRv);
|
2013-07-12 18:36:32 +04:00
|
|
|
#endif // MOZ_B2G_BT
|
|
|
|
#ifdef MOZ_TIME_MANAGER
|
|
|
|
time::TimeManager* GetMozTime(ErrorResult& aRv);
|
|
|
|
#endif // MOZ_TIME_MANAGER
|
|
|
|
#ifdef MOZ_AUDIO_CHANNEL_MANAGER
|
|
|
|
system::AudioChannelManager* GetMozAudioChannelManager(ErrorResult& aRv);
|
|
|
|
#endif // MOZ_AUDIO_CHANNEL_MANAGER
|
2014-03-06 19:51:23 +04:00
|
|
|
|
2015-03-19 10:48:28 +03:00
|
|
|
Presentation* GetPresentation(ErrorResult& aRv);
|
|
|
|
|
2014-03-06 19:51:23 +04:00
|
|
|
bool SendBeacon(const nsAString& aUrl,
|
|
|
|
const Nullable<ArrayBufferViewOrBlobOrStringOrFormData>& aData,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-04-18 22:00:16 +04:00
|
|
|
void MozGetUserMedia(const MediaStreamConstraints& aConstraints,
|
2013-09-16 10:34:57 +04:00
|
|
|
NavigatorUserMediaSuccessCallback& aOnSuccess,
|
|
|
|
NavigatorUserMediaErrorCallback& aOnError,
|
2013-07-12 18:37:21 +04:00
|
|
|
ErrorResult& aRv);
|
2014-04-18 22:00:16 +04:00
|
|
|
void MozGetUserMediaDevices(const MediaStreamConstraints& aConstraints,
|
2013-09-16 10:34:57 +04:00
|
|
|
MozGetUserMediaDevicesSuccessCallback& aOnSuccess,
|
|
|
|
NavigatorUserMediaErrorCallback& aOnError,
|
2014-02-14 23:32:58 +04:00
|
|
|
uint64_t aInnerWindowID,
|
2016-01-08 01:30:10 +03:00
|
|
|
const nsAString& aCallID,
|
2013-07-12 18:37:21 +04:00
|
|
|
ErrorResult& aRv);
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2014-08-19 17:56:00 +04:00
|
|
|
already_AddRefed<ServiceWorkerContainer> ServiceWorker();
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2014-05-12 15:48:15 +04:00
|
|
|
void GetLanguages(nsTArray<nsString>& aLanguages);
|
2014-09-05 18:26:34 +04:00
|
|
|
|
2015-02-18 01:10:45 +03:00
|
|
|
bool MozE10sEnabled();
|
|
|
|
|
2014-09-05 18:26:34 +04:00
|
|
|
static void GetAcceptLanguages(nsTArray<nsString>& aLanguages);
|
2013-07-12 18:35:35 +04:00
|
|
|
|
|
|
|
// WebIDL helper methods
|
|
|
|
static bool HasWakeLockSupport(JSContext* /* unused*/, JSObject* /*unused */);
|
2013-07-12 18:35:44 +04:00
|
|
|
static bool HasCameraSupport(JSContext* /* unused */,
|
|
|
|
JSObject* aGlobal);
|
2014-02-05 13:52:25 +04:00
|
|
|
static bool HasWifiManagerSupport(JSContext* /* unused */,
|
|
|
|
JSObject* aGlobal);
|
2013-10-03 02:09:08 +04:00
|
|
|
#ifdef MOZ_NFC
|
2014-04-29 07:50:25 +04:00
|
|
|
static bool HasNFCSupport(JSContext* /* unused */, JSObject* aGlobal);
|
2013-10-03 02:09:08 +04:00
|
|
|
#endif // MOZ_NFC
|
2013-07-12 18:37:21 +04:00
|
|
|
static bool HasUserMediaSupport(JSContext* /* unused */,
|
|
|
|
JSObject* /* unused */);
|
2013-07-12 18:36:32 +04:00
|
|
|
|
2015-02-18 01:10:45 +03:00
|
|
|
static bool IsE10sEnabled(JSContext* aCx, JSObject* aGlobal);
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowInner* GetParentObject() const
|
2013-07-12 18:35:35 +04:00
|
|
|
{
|
|
|
|
return GetWindow();
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* cx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-07-12 18:37:23 +04:00
|
|
|
|
2015-01-15 19:58:41 +03:00
|
|
|
// GetWindowFromGlobal returns the inner window for this global, if
|
|
|
|
// any, else null.
|
2016-01-30 20:05:36 +03:00
|
|
|
static already_AddRefed<nsPIDOMWindowInner> GetWindowFromGlobal(JSObject* aGlobal);
|
2015-01-15 19:58:41 +03:00
|
|
|
|
2014-11-18 12:13:02 +03:00
|
|
|
#ifdef MOZ_EME
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
RequestMediaKeySystemAccess(const nsAString& aKeySystem,
|
2015-10-27 04:10:51 +03:00
|
|
|
const Sequence<MediaKeySystemConfiguration>& aConfig,
|
2014-11-18 12:13:02 +03:00
|
|
|
ErrorResult& aRv);
|
2015-03-31 10:50:01 +03:00
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<MediaKeySystemAccessManager> mMediaKeySystemAccessManager;
|
2014-11-18 12:13:02 +03:00
|
|
|
#endif
|
|
|
|
|
2011-11-02 17:44:16 +04:00
|
|
|
private:
|
2014-06-23 23:56:07 +04:00
|
|
|
virtual ~Navigator();
|
|
|
|
|
2012-10-02 13:08:02 +04:00
|
|
|
bool CheckPermission(const char* type);
|
2016-01-30 20:05:36 +03:00
|
|
|
static bool CheckPermission(nsPIDOMWindowInner* aWindow, const char* aType);
|
2013-07-12 18:35:35 +04:00
|
|
|
|
2015-08-18 14:42:14 +03:00
|
|
|
already_AddRefed<nsDOMDeviceStorage> FindDeviceStorage(const nsAString& aName,
|
|
|
|
const nsAString& aType);
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsMimeTypeArray> mMimeTypes;
|
|
|
|
RefPtr<nsPluginArray> mPlugins;
|
|
|
|
RefPtr<Permissions> mPermissions;
|
|
|
|
RefPtr<Geolocation> mGeolocation;
|
|
|
|
RefPtr<DesktopNotificationCenter> mNotification;
|
|
|
|
RefPtr<battery::BatteryManager> mBatteryManager;
|
|
|
|
RefPtr<Promise> mBatteryPromise;
|
2013-09-04 02:26:33 +04:00
|
|
|
#ifdef MOZ_B2G_FM
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<FMRadio> mFMRadio;
|
2013-09-04 02:26:33 +04:00
|
|
|
#endif
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<PowerManager> mPowerManager;
|
|
|
|
RefPtr<CellBroadcast> mCellBroadcast;
|
|
|
|
RefPtr<IccManager> mIccManager;
|
|
|
|
RefPtr<MobileMessageManager> mMobileMessageManager;
|
|
|
|
RefPtr<Telephony> mTelephony;
|
|
|
|
RefPtr<Voicemail> mVoicemail;
|
|
|
|
RefPtr<TVManager> mTVManager;
|
|
|
|
RefPtr<InputPortManager> mInputPortManager;
|
|
|
|
RefPtr<network::Connection> mConnection;
|
2012-08-27 21:34:10 +04:00
|
|
|
#ifdef MOZ_B2G_RIL
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<MobileConnectionArray> mMobileConnections;
|
2012-08-27 21:34:10 +04:00
|
|
|
#endif
|
2012-02-20 19:15:19 +04:00
|
|
|
#ifdef MOZ_B2G_BT
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<bluetooth::BluetoothManager> mBluetooth;
|
2012-11-30 02:52:03 +04:00
|
|
|
#endif
|
|
|
|
#ifdef MOZ_AUDIO_CHANNEL_MANAGER
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<system::AudioChannelManager> mAudioChannelManager;
|
2012-02-20 19:15:19 +04:00
|
|
|
#endif
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsDOMCameraManager> mCameraManager;
|
|
|
|
RefPtr<MediaDevices> mMediaDevices;
|
2015-08-18 14:42:14 +03:00
|
|
|
nsTArray<nsWeakPtr> mDeviceStorageStores;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<time::TimeManager> mTimeManager;
|
|
|
|
RefPtr<ServiceWorkerContainer> mServiceWorkerContainer;
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DeviceStorageAreaListener> mDeviceStorageAreaListener;
|
|
|
|
RefPtr<Presentation> mPresentation;
|
2016-06-28 01:26:00 +03:00
|
|
|
#ifdef MOZ_GAMEPAD
|
|
|
|
RefPtr<GamepadServiceTest> mGamepadServiceTest;
|
|
|
|
#endif
|
2016-04-13 03:39:28 +03:00
|
|
|
nsTArray<RefPtr<Promise> > mVRGetDisplaysPromises;
|
2016-04-26 16:40:27 +03:00
|
|
|
nsTArray<uint32_t> mRequestedVibrationPattern;
|
2011-11-02 17:44:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_Navigator_h
|