diff options
author | Moonchild <moonchild@palemoon.org> | 2022-01-02 16:44:33 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-01-02 16:44:33 +0000 |
commit | 7198c276ab584a86dc14f972ba8d64f022610713 (patch) | |
tree | 262b1faad77c5d694897f5d5ecac7b1cc27426c7 /modules | |
parent | 0c2396808491278981bec84e8998b29ec19d297d (diff) | |
download | aura-central-7198c276ab584a86dc14f972ba8d64f022610713.tar.gz |
Issue %3015 - Part 1: Remove GMP support code.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ForgetAboutSite.jsm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/ForgetAboutSite.jsm b/modules/ForgetAboutSite.jsm index 9d7e512a8..f2f4cd58e 100644 --- a/modules/ForgetAboutSite.jsm +++ b/modules/ForgetAboutSite.jsm @@ -84,15 +84,6 @@ this.ForgetAboutSite = { throw new Error("Exception thrown while clearning cookies: " + ex); })); - // EME - promises.push(Task.spawn(function*() { - let mps = Cc["@mozilla.org/gecko-media-plugin-service;1"]. - getService(Ci.mozIGeckoMediaPluginChromeService); - mps.forgetThisSite(aDomain, JSON.stringify({})); - }).catch(ex => { - throw new Error("Exception thrown while clearing Encrypted Media Extensions: " + ex); - })); - // Plugin data const phInterface = Ci.nsIPluginHost; const FLAG_CLEAR_ALL = phInterface.FLAG_CLEAR_ALL; |