mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
0257791053
is mentioned to mention a contractid, including in identifiers. r=warren
20 lines
484 B
JavaScript
20 lines
484 B
JavaScript
|
|
|
|
function viewSignons()
|
|
{
|
|
window.openDialog("chrome://wallet/content/SignonViewer.xul","","modal=yes,chrome,resizable=no");
|
|
}
|
|
|
|
function viewWallet()
|
|
{
|
|
window.openDialog("chrome://wallet/content/WalletEditor.xul","","modal=yes,chrome,resizable=no");
|
|
}
|
|
|
|
function changePasswords()
|
|
{
|
|
wallet = Components.classes['@mozilla.org/wallet;1'];
|
|
wallet = wallet.getService();
|
|
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
|
|
wallet.WALLET_ChangePassword();
|
|
}
|