mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
const Ci = Components.interfaces;
|
|
const Cc = Components.classes;
|
|
const Cu = Components.utils;
|
|
|
|
Cu.import("resource://gre/modules/StoreTrustAnchor.jsm");
|
|
|
|
// This is all that's needed now
|
|
TrustedRootCertificate.index = Ci.nsIX509CertDB.AppXPCShellRoot;
|
|
|
|
sendAsyncMessage("addCertCompleted");
|