2013-09-16 10:34:57 +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/. */
|
|
|
|
|
|
|
|
#ifndef GetUserMediaRequest_h__
|
|
|
|
#define GetUserMediaRequest_h__
|
|
|
|
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-06-19 04:57:51 +04:00
|
|
|
|
|
|
|
struct MediaStreamConstraints;
|
2013-09-16 10:34:57 +04:00
|
|
|
|
|
|
|
class GetUserMediaRequest : public nsISupports, public nsWrapperCache {
|
|
|
|
public:
|
2016-01-30 20:05:36 +03:00
|
|
|
GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow,
|
2014-02-14 23:32:58 +04:00
|
|
|
const nsAString& aCallID,
|
2014-04-18 22:00:16 +04:00
|
|
|
const MediaStreamConstraints& aConstraints,
|
2018-01-11 01:59:55 +03:00
|
|
|
bool aIsSecure, bool aIsHandlingUserInput);
|
2017-01-19 07:24:59 +03:00
|
|
|
GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow, const nsAString& aRawId,
|
2019-02-05 21:40:21 +03:00
|
|
|
const nsAString& aMediaSource, bool aIsHandlingUserInput);
|
2013-09-16 10:34:57 +04:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(GetUserMediaRequest)
|
|
|
|
|
2016-01-18 06:50:29 +03:00
|
|
|
JSObject* WrapObject(JSContext* cx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-09-16 10:34:57 +04:00
|
|
|
nsISupports* GetParentObject();
|
|
|
|
|
|
|
|
uint64_t WindowID();
|
2014-02-14 23:32:58 +04:00
|
|
|
uint64_t InnerWindowID();
|
2014-04-16 10:22:19 +04:00
|
|
|
bool IsSecure();
|
2018-01-11 01:59:55 +03:00
|
|
|
bool IsHandlingUserInput() const;
|
2013-09-16 10:34:57 +04:00
|
|
|
void GetCallID(nsString& retval);
|
2017-01-19 07:24:59 +03:00
|
|
|
void GetRawID(nsString& retval);
|
|
|
|
void GetMediaSource(nsString& retval);
|
2014-04-18 22:00:16 +04:00
|
|
|
void GetConstraints(MediaStreamConstraints& result);
|
2013-09-16 10:34:57 +04:00
|
|
|
|
|
|
|
private:
|
Bug 1299515 - Flatten MediaEngineSource class hierarchy. r=jib
The scope of flattening this hierarchy quickly grows large, so this patch does
a couple more things:
- Creates a pure interface MediaEngineSourceInterface and a base class
MediaEngineSource with common defaults and refcount support (no state!)
- Breaks out some of the helper classes to dedicated files, e.g.,
AllocationHandle, MediaEnginePrefs.
- Clarifies the threading model (written on one thread *and* under lock,
read under either)
- Fixes style, indentation, include-sorting in the affected files
- Adds comments, especially for clarifying what responsibilities methods have,
and thread usage of class members
- Changes Monitors to Mutexes since we only use them as Mutexes anyhow
- Makes MediaEngineRemoteVideoSource no longer a shared source since we now
support scaling in this source and CamerasChild can act as a broker of frames.
This greatly simplifies it. The only shared source is now
MediaEngineWebRTCMicrophoneSource, so the sharing specific common methods have
been moved to that source.
MozReview-Commit-ID: KeVZQo6gLm2
--HG--
rename : dom/media/webrtc/MediaEngine.h => dom/media/webrtc/MediaEnginePrefs.h
extra : rebase_source : c785a5feb896312912170475d6b8d997e712e48f
2018-01-24 18:49:13 +03:00
|
|
|
virtual ~GetUserMediaRequest() = default;
|
2014-06-23 23:56:07 +04:00
|
|
|
|
2014-02-14 23:32:58 +04:00
|
|
|
uint64_t mInnerWindowID, mOuterWindowID;
|
2013-09-16 10:34:57 +04:00
|
|
|
const nsString mCallID;
|
2017-01-19 07:24:59 +03:00
|
|
|
const nsString mRawID;
|
|
|
|
const nsString mMediaSource;
|
2014-04-18 22:00:16 +04:00
|
|
|
nsAutoPtr<MediaStreamConstraints> mConstraints;
|
2014-04-16 10:22:19 +04:00
|
|
|
bool mIsSecure;
|
2018-01-11 01:59:55 +03:00
|
|
|
bool mIsHandlingUserInput;
|
2013-09-16 10:34:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // GetUserMediaRequest_h__
|