Bug 1765319 - Part 4: Stop using global this to access global variable in services/. r=Gijs

Differential Revision: https://phabricator.services.mozilla.com/D144134
This commit is contained in:
Tooru Fujisawa 2022-05-13 20:12:27 +00:00
Родитель 2a79251616
Коммит be94355f17
5 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -101,7 +101,7 @@ var HawkClient = function(host) {
this._localtimeOffsetMsec = 0;
};
this.HawkClient.prototype = {
HawkClient.prototype = {
/*
* Construct an error message for a response. Private.
*

Просмотреть файл

@ -163,7 +163,7 @@ function Intl() {
this.init();
}
this.Intl.prototype = {
Intl.prototype = {
init() {
Services.prefs.addObserver("intl.accept_languages", this);
},

Просмотреть файл

@ -1635,6 +1635,6 @@ Sync11Service.prototype = {
};
var Service = new Sync11Service();
this.Service.promiseInitialized = new Promise(resolve => {
this.Service.onStartup().then(resolve);
Service.promiseInitialized = new Promise(resolve => {
Service.onStartup().then(resolve);
});

Просмотреть файл

@ -25,7 +25,7 @@ var DeclinedEngines = function(service) {
this.service = service;
};
this.DeclinedEngines.prototype = {
DeclinedEngines.prototype = {
updateDeclined(meta, engineManager = this.service.engineManager) {
let enabled = new Set(engineManager.getEnabled().map(e => e.name));
let known = new Set(engineManager.getAll().map(e => e.name));

Просмотреть файл

@ -126,7 +126,7 @@ function SyncAuthManager() {
}
}
this.SyncAuthManager.prototype = {
SyncAuthManager.prototype = {
_fxaService: null,
_tokenServerClient: null,
// https://docs.services.mozilla.com/token/apis.html