mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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");
|