forked from pool/MozillaThunderbird
cde9b1d6a6
* requires NSPR 4.19 and NSS 3.36.4 * what's new https://www.thunderbird.net/en-US/thunderbird/60.0/releasenotes/ - source archives are now signed directly (removed checksum signature check) - imported patches from Firefox 60 * mozilla-bmo1375074.patch * mozilla-bmo1464766.patch * mozilla-i586-DecoderDoctorLogger.patch * mozilla-i586-domPrefs.patch - removed obsolete patches * mozilla-language.patch - removed -devel subpackage as old-style extensions are mainly gone - storing of remote content settings fixed (boo#1084603) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=419
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
# HG changeset patch
|
|
# Parent f3fe334a20e8a63266eb06c5d298ad793cefc015
|
|
Mozilla Bug#1447070 - DecoderDoctorLogger.h must be included in MediaKeySession.h
|
|
to fix non-unified build error for i586 target.
|
|
|
|
diff --git a/dom/media/eme/MediaKeySession.h b/dom/media/eme/MediaKeySession.h
|
|
--- a/dom/media/eme/MediaKeySession.h
|
|
+++ b/dom/media/eme/MediaKeySession.h
|
|
@@ -2,16 +2,17 @@
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 mozilla_dom_MediaKeySession_h
|
|
#define mozilla_dom_MediaKeySession_h
|
|
|
|
+#include "DecoderDoctorLogger.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "mozilla/dom/Date.h"
|