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"
|
2016-11-16 01:44:43 +03:00
|
|
|
#include "mozilla/dom/BindingDeclarations.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"
|
2015-03-31 10:50:01 +03:00
|
|
|
#include "mozilla/dom/MediaKeySystemAccessManager.h"
|
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 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;
|
2017-01-09 23:22:49 +03:00
|
|
|
class WebAuthentication;
|
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-10-02 21:27:07 +04:00
|
|
|
class Promise;
|
|
|
|
|
2013-04-10 18:20:43 +04:00
|
|
|
class DesktopNotificationCenter;
|
2013-07-12 18:35:35 +04:00
|
|
|
class MozIdleObserver;
|
2013-07-12 18:36:32 +04:00
|
|
|
class Gamepad;
|
2016-06-28 01:26:00 +03:00
|
|
|
class GamepadServiceTest;
|
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
|
|
|
|
2012-01-20 07:24:00 +04:00
|
|
|
class PowerManager;
|
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;
|
2016-06-14 15:57:36 +03:00
|
|
|
class StorageManager;
|
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-11-16 01:44:43 +03:00
|
|
|
void GetAppName(nsAString& aAppName, CallerType aCallerType) const;
|
|
|
|
void GetAppVersion(nsAString& aAppName, CallerType aCallerType,
|
|
|
|
ErrorResult& aRv) const;
|
|
|
|
void GetPlatform(nsAString& aPlatform, CallerType aCallerType,
|
|
|
|
ErrorResult& aRv) const;
|
|
|
|
void GetUserAgent(nsAString& aUserAgent, CallerType aCallerType,
|
|
|
|
ErrorResult& aRv) const;
|
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();
|
|
|
|
|
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);
|
|
|
|
}
|
2016-11-16 01:44:43 +03:00
|
|
|
void GetOscpu(nsAString& aOscpu, CallerType aCallerType,
|
|
|
|
ErrorResult& aRv) const;
|
2013-07-12 18:35:35 +04:00
|
|
|
// The XPCOM GetVendor is OK
|
|
|
|
// The XPCOM GetVendorSub is OK
|
|
|
|
// The XPCOM GetProductSub is OK
|
|
|
|
bool CookieEnabled();
|
2016-11-16 01:44:43 +03:00
|
|
|
void GetBuildID(nsAString& aBuildID, CallerType aCallerType,
|
|
|
|
ErrorResult& aRv) const;
|
2013-09-11 18:35:04 +04:00
|
|
|
PowerManager* GetMozPower(ErrorResult& aRv);
|
2016-12-17 08:25:52 +03:00
|
|
|
bool JavaEnabled(CallerType aCallerType, ErrorResult& aRv);
|
2016-03-16 22:41:38 +03:00
|
|
|
uint64_t HardwareConcurrency();
|
2016-10-08 02:23:39 +03:00
|
|
|
bool CpuHasSSE2();
|
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);
|
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);
|
2014-09-20 10:20:41 +04:00
|
|
|
MediaDevices* GetMediaDevices(ErrorResult& aRv);
|
2015-01-13 12:53:22 +03:00
|
|
|
|
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();
|
2016-04-13 03:39:28 +03:00
|
|
|
already_AddRefed<Promise> GetVRDisplays(ErrorResult& aRv);
|
2016-07-05 01:52:21 +03:00
|
|
|
void GetActiveVRDisplays(nsTArray<RefPtr<VRDisplay>>& aDisplays) const;
|
2013-07-12 18:36:32 +04:00
|
|
|
#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
|
|
|
|
2017-01-09 23:22:49 +03:00
|
|
|
mozilla::dom::WebAuthentication* Authentication();
|
|
|
|
|
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();
|
|
|
|
|
2016-06-14 15:57:36 +03:00
|
|
|
StorageManager* Storage();
|
|
|
|
|
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 */);
|
2014-02-05 13:52:25 +04:00
|
|
|
static bool HasWifiManagerSupport(JSContext* /* unused */,
|
|
|
|
JSObject* aGlobal);
|
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
|
|
|
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
|
|
|
|
2016-07-05 01:52:21 +03:00
|
|
|
public:
|
|
|
|
void NotifyVRDisplaysUpdated();
|
|
|
|
void NotifyActiveVRDisplaysChanged();
|
|
|
|
|
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;
|
|
|
|
RefPtr<PowerManager> mPowerManager;
|
|
|
|
RefPtr<network::Connection> mConnection;
|
2017-01-09 23:22:49 +03:00
|
|
|
RefPtr<WebAuthentication> mAuthentication;
|
2012-11-30 02:52:03 +04:00
|
|
|
#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<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
|
|
|
RefPtr<GamepadServiceTest> mGamepadServiceTest;
|
2016-04-13 03:39:28 +03:00
|
|
|
nsTArray<RefPtr<Promise> > mVRGetDisplaysPromises;
|
2016-04-26 16:40:27 +03:00
|
|
|
nsTArray<uint32_t> mRequestedVibrationPattern;
|
2016-06-14 15:57:36 +03:00
|
|
|
RefPtr<StorageManager> mStorageManager;
|
2011-11-02 17:44:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_Navigator_h
|