Bug 1561435 - Fix linting errors for mobile/, r=standard8

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35915

--HG--
extra : source : 2072cc33ae8e2b64a761ece5ab32ce711d547c97
extra : intermediate-source : afb89fcad8e41f4f03ea5d16a7528002820b8305
This commit is contained in:
Victor Porof 2019-06-20 11:33:11 -07:00
parent e999ae1989
commit 9e9be26a9b
7 changed files with 29 additions and 31 deletions

View file

@ -498,6 +498,8 @@ InternalPrompt.prototype = {
} }
// (eslint-disable: see bug 1177904) // (eslint-disable: see bug 1177904)
/* eslint-disable no-undef */
let ok = false; let ok = false;
if (aUser) { if (aUser) {
ok = this.nsIPrompt_promptUsernameAndPassword( ok = this.nsIPrompt_promptUsernameAndPassword(
@ -508,10 +510,11 @@ InternalPrompt.prototype = {
checkMsg, checkMsg,
check check
); );
} // eslint-disable-line no-undef } else {
else {
ok = this.nsIPrompt_promptPassword(aTitle, aText, aPass, checkMsg, check); ok = this.nsIPrompt_promptPassword(aTitle, aText, aPass, checkMsg, check);
} // eslint-disable-line no-undef }
/* eslint-enable no-undef */
if (ok && canSave && check.value) { if (ok && canSave && check.value) {
PromptUtils.savePassword(hostname, realm, aUser, aPass); PromptUtils.savePassword(hostname, realm, aUser, aPass);

View file

@ -30,18 +30,14 @@ class BrowserAction extends EventEmitter {
this.tabManager = extension.tabManager; this.tabManager = extension.tabManager;
this.tabContext.on( // eslint-disable-next-line mozilla/balanced-listeners
"tab-selected", // eslint-disable-line mozilla/balanced-listeners this.tabContext.on("tab-selected", (evt, tabId) => {
(evt, tabId) => {
this.onTabSelected(tabId); this.onTabSelected(tabId);
} });
); // eslint-disable-next-line mozilla/balanced-listeners
this.tabContext.on( this.tabContext.on("tab-closed", (evt, tabId) => {
"tab-closed", // eslint-disable-line mozilla/balanced-listeners
(evt, tabId) => {
this.onTabClosed(tabId); this.onTabClosed(tabId);
} });
);
BrowserActions.register(this); BrowserActions.register(this);
} }

View file

@ -65,18 +65,14 @@ class PageAction extends EventEmitter {
this.shouldShow = false; this.shouldShow = false;
this.tabContext.on( // eslint-disable-next-line mozilla/balanced-listeners
"tab-selected", // eslint-disable-line mozilla/balanced-listeners this.tabContext.on("tab-selected", (evt, tabId) => {
(evt, tabId) => {
this.onTabSelected(tabId); this.onTabSelected(tabId);
} });
); // eslint-disable-next-line mozilla/balanced-listeners
this.tabContext.on( this.tabContext.on("tab-closed", (evt, tabId) => {
"tab-closed", // eslint-disable-line mozilla/balanced-listeners
(evt, tabId) => {
this.onTabClosed(tabId); this.onTabClosed(tabId);
} });
);
} }
/** /**

View file

@ -783,8 +783,8 @@ class WindowManager extends WindowManagerBase {
} }
} }
// eslint-disable-next-line mozilla/balanced-listeners
extensions.on("startup", (type, extension) => { extensions.on("startup", (type, extension) => {
// eslint-disable-line mozilla/balanced-listeners
defineLazyGetter(extension, "tabManager", () => new TabManager(extension)); defineLazyGetter(extension, "tabManager", () => new TabManager(extension));
defineLazyGetter( defineLazyGetter(
extension, extension,

View file

@ -30,6 +30,7 @@ class GeckoViewAccessibility extends GeckoViewModule {
} }
} }
// eslint-disable-next-line no-unused-vars
const { debug, warn } = GeckoViewAccessibility.initLogging( const { debug, warn } = GeckoViewAccessibility.initLogging(
"GeckoViewAccessibility" "GeckoViewAccessibility"
); // eslint-disable-line no-unused-vars );

View file

@ -57,6 +57,7 @@ class GeckoViewContentBlocking extends GeckoViewModule {
} }
} }
// eslint-disable-next-line no-unused-vars
const { debug, warn } = GeckoViewContentBlocking.initLogging( const { debug, warn } = GeckoViewContentBlocking.initLogging(
"GeckoViewContentBlocking" "GeckoViewContentBlocking"
); // eslint-disable-line no-unused-vars );

View file

@ -11,9 +11,10 @@ const { GeckoViewUtils } = ChromeUtils.import(
); );
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm"); const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
// eslint-disable-next-line no-unused-vars
const { debug, warn } = GeckoViewUtils.initLogging( const { debug, warn } = GeckoViewUtils.initLogging(
"GeckoViewStorageController" "GeckoViewStorageController"
); // eslint-disable-line no-unused-vars );
// Keep in sync with StorageController.ClearFlags and nsIClearDataService.idl. // Keep in sync with StorageController.ClearFlags and nsIClearDataService.idl.
const ClearFlags = [ const ClearFlags = [