mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
39652249b0
--HG-- extra : rebase_source : 791aa4ea49e8430a54eab91d9bb55ba760efbe9d
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict"
|
|
|
|
const { interfaces: Ci, utils: Cu } = Components;
|
|
|
|
Cu.import("resource://gre/modules/FxAccountsCommon.js");
|
|
Cu.import("resource://gre/modules/ContentRequestHelper.jsm");
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
function FxAccountsUIGlue() {
|
|
}
|
|
|
|
FxAccountsUIGlue.prototype = {
|
|
|
|
__proto__: ContentRequestHelper.prototype,
|
|
|
|
signInFlow: function() {
|
|
return this.contentRequest("mozFxAccountsRPContentEvent",
|
|
"mozFxAccountsUnsolChromeEvent",
|
|
"openFlow");
|
|
},
|
|
|
|
refreshAuthentication: function(aEmail) {
|
|
return this.contentRequest("mozFxAccountsRPContentEvent",
|
|
"mozFxAccountsUnsolChromeEvent",
|
|
"refreshAuthentication", {
|
|
email: aEmail
|
|
});
|
|
},
|
|
|
|
classID: Components.ID("{51875c14-91d7-4b8c-b65d-3549e101228c}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIFxAccountsUIGlue])
|
|
};
|
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([FxAccountsUIGlue]);
|