mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/* 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 "mozilla/dom/MediaStreamTrackBinding.h"
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
class MediaStreamConstraintsInternal;
|
|
|
|
class GetUserMediaRequest : public nsISupports, public nsWrapperCache
|
|
{
|
|
public:
|
|
GetUserMediaRequest(nsPIDOMWindow* aInnerWindow, const nsAString& aCallID,
|
|
const MediaStreamConstraintsInternal& aConstraints);
|
|
virtual ~GetUserMediaRequest() {};
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(GetUserMediaRequest)
|
|
|
|
virtual JSObject* WrapObject(JSContext* cx, JS::Handle<JSObject*> scope)
|
|
MOZ_OVERRIDE;
|
|
nsISupports* GetParentObject();
|
|
|
|
uint64_t WindowID();
|
|
void GetCallID(nsString& retval);
|
|
void GetConstraints(MediaStreamConstraintsInternal &result);
|
|
|
|
private:
|
|
nsCOMPtr<nsPIDOMWindow> mInnerWindow;
|
|
uint64_t mWindowID;
|
|
const nsString mCallID;
|
|
MediaStreamConstraintsInternal mConstraints;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // GetUserMediaRequest_h__
|