summaryrefslogtreecommitdiff
path: root/dom/media/gmp/GMPChild.cpp
diff options
context:
space:
mode:
authorwin7-7 <win7-7@users.noreply.github.com>2020-02-06 17:17:28 +0200
committerwin7-7 <win7-7@users.noreply.github.com>2020-02-06 17:17:28 +0200
commit6376eceaebe8852b3b74bc77bd1cd6d06e5bb049 (patch)
tree2ecda9bf32e7a41a324e3dbf5c3c7fbcc1890dd1 /dom/media/gmp/GMPChild.cpp
parent074f23467b57595007b1c5ff9906e3f30fdfdf9e (diff)
parent04c770c8c84b9251b36d3c58c847b63e9b4fa08d (diff)
downloaduxp-6376eceaebe8852b3b74bc77bd1cd6d06e5bb049.tar.gz
Merge branch 'master' into optimization-3-pr
Diffstat (limited to 'dom/media/gmp/GMPChild.cpp')
-rw-r--r--dom/media/gmp/GMPChild.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/media/gmp/GMPChild.cpp b/dom/media/gmp/GMPChild.cpp
index 14b06cc726..fa6f2f4c83 100644
--- a/dom/media/gmp/GMPChild.cpp
+++ b/dom/media/gmp/GMPChild.cpp
@@ -22,7 +22,9 @@
#include "GMPUtils.h"
#include "prio.h"
#include "base/task.h"
+#ifdef MOZ_EME
#include "widevine-adapter/WidevineAdapter.h"
+#endif
using namespace mozilla::ipc;
@@ -254,9 +256,13 @@ GMPChild::AnswerStartPlugin(const nsString& aAdapter)
return false;
}
+#ifdef MOZ_EME
bool isWidevine = aAdapter.EqualsLiteral("widevine");
GMPAdapter* adapter = (isWidevine) ? new WidevineAdapter() : nullptr;
+#else
+ GMPAdapter* adapter = nullptr;
+#endif
if (!mGMPLoader->Load(libPath.get(),
libPath.Length(),
mNodeId.BeginWriting(),