gecko-dev/dom/media/GetUserMediaRequest.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.7 KiB
C++
Raw Normal View History

/* 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/. */
#include "GetUserMediaRequest.h"
#include "base/basictypes.h"
#include "mozilla/dom/MediaStreamBinding.h"
#include "mozilla/dom/GetUserMediaRequestBinding.h"
#include "nsIScriptGlobalObject.h"
#include "nsPIDOMWindow.h"
namespace mozilla {
namespace dom {
GetUserMediaRequest::GetUserMediaRequest(
nsPIDOMWindowInner* aInnerWindow, const nsAString& aCallID,
const MediaStreamConstraints& aConstraints, bool aIsSecure,
bool aIsHandlingUserInput)
: mInnerWindowID(aInnerWindow->WindowID()),
mOuterWindowID(aInnerWindow->GetOuterWindow()->WindowID()),
mCallID(aCallID),
mConstraints(new MediaStreamConstraints(aConstraints)),
mIsSecure(aIsSecure),
mIsHandlingUserInput(aIsHandlingUserInput) {}
GetUserMediaRequest::GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow,
const nsAString& aRawId,
const nsAString& aMediaSource)
: mInnerWindowID(0),
mOuterWindowID(0),
mRawID(aRawId),
mMediaSource(aMediaSource),
mIsSecure(false),
mIsHandlingUserInput(false) {
if (aInnerWindow && aInnerWindow->GetOuterWindow()) {
mOuterWindowID = aInnerWindow->GetOuterWindow()->WindowID();
}
}
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(GetUserMediaRequest)
NS_IMPL_CYCLE_COLLECTING_ADDREF(GetUserMediaRequest)
NS_IMPL_CYCLE_COLLECTING_RELEASE(GetUserMediaRequest)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(GetUserMediaRequest)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv The only manual changes here are to BindingUtils.h, BindingUtils.cpp, Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp, dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp, Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp, Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The rest of this diff was generated by running the following commands: find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
JSObject* GetUserMediaRequest::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
return GetUserMediaRequest_Binding::Wrap(aCx, this, aGivenProto);
}
nsISupports* GetUserMediaRequest::GetParentObject() { return nullptr; }
void GetUserMediaRequest::GetCallID(nsString& retval) { retval = mCallID; }
void GetUserMediaRequest::GetRawID(nsString& retval) { retval = mRawID; }
void GetUserMediaRequest::GetMediaSource(nsString& retval) {
retval = mMediaSource;
}
uint64_t GetUserMediaRequest::WindowID() { return mOuterWindowID; }
uint64_t GetUserMediaRequest::InnerWindowID() { return mInnerWindowID; }
bool GetUserMediaRequest::IsSecure() { return mIsSecure; }
bool GetUserMediaRequest::IsHandlingUserInput() const {
return mIsHandlingUserInput;
}
void GetUserMediaRequest::GetConstraints(MediaStreamConstraints& result) {
result = *mConstraints;
}
} // namespace dom
} // namespace mozilla