diff options
author | Martin Stransky <stransky@redhat.com> | 2017-04-19 13:46:50 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2017-04-19 13:46:50 +0200 |
commit | de895fe43051d80410d904ea4a926ebff7b76565 (patch) | |
tree | dc45be44a6a0854c6c18a1853c747b6eecf53169 /mozilla-1335250.patch | |
parent | Merge branch 'master' into f24 (diff) | |
parent | Added second arches build patch (diff) | |
download | librewolf-fedora-ff-de895fe43051d80410d904ea4a926ebff7b76565.tar.gz librewolf-fedora-ff-de895fe43051d80410d904ea4a926ebff7b76565.tar.bz2 librewolf-fedora-ff-de895fe43051d80410d904ea4a926ebff7b76565.zip |
Merge branch 'master' into f24
Diffstat (limited to 'mozilla-1335250.patch')
-rw-r--r-- | mozilla-1335250.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/mozilla-1335250.patch b/mozilla-1335250.patch new file mode 100644 index 0000000..1680349 --- /dev/null +++ b/mozilla-1335250.patch @@ -0,0 +1,37 @@ +# HG changeset patch +# User Andrea Marchesini <amarchesini@mozilla.com> +# Parent b8b7103963d9f243b0a30c8bc0d9a0b37ed8a955 + +diff --git a/dom/media/webrtc/MediaEngine.h b/dom/media/webrtc/MediaEngine.h +--- a/dom/media/webrtc/MediaEngine.h ++++ b/dom/media/webrtc/MediaEngine.h +@@ -221,27 +221,27 @@ public: + class AllocationHandle + { + public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(AllocationHandle); + protected: + ~AllocationHandle() {} + public: + AllocationHandle(const dom::MediaTrackConstraints& aConstraints, +- const ipc::PrincipalInfo& aPrincipalInfo, ++ const mozilla::ipc::PrincipalInfo& aPrincipalInfo, + const MediaEnginePrefs& aPrefs, + const nsString& aDeviceId) + + : mConstraints(aConstraints), + mPrincipalInfo(aPrincipalInfo), + mPrefs(aPrefs), + mDeviceId(aDeviceId) {} + public: + NormalizedConstraints mConstraints; +- ipc::PrincipalInfo mPrincipalInfo; ++ mozilla::ipc::PrincipalInfo mPrincipalInfo; + MediaEnginePrefs mPrefs; + nsString mDeviceId; + }; + + /* Release the device back to the system. */ + virtual nsresult Deallocate(AllocationHandle* aHandle) + { + MOZ_ASSERT(aHandle); |