diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-04-23 15:45:53 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-04-23 15:45:53 -0500 |
commit | 27c060a42f25e4fcfddfeb9ace0bfc93ed6d1d20 (patch) | |
tree | 88eae0fcf21516ac0f9948314ef97fe847faa1f1 | |
parent | c89bbcef39fb605460edc2f8d3b447eff72b074d (diff) | |
download | aura-central-27c060a42f25e4fcfddfeb9ace0bfc93ed6d1d20.tar.gz |
Issue #25 - Follow-up: Remove call to gecko-media-plugin-service from ForgetAboutSite.jsm
-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; |