Commit 4e35a2bf authored by Tooru Fujisawa's avatar Tooru Fujisawa
Browse files

Bug 1780543 - Part 3: Add mozilla/process-script environment as alias to...

Bug 1780543 - Part 3: Add mozilla/process-script environment as alias to frame-script. r=Standard8,perftest-reviewers,webcompat-reviewers,necko-reviewers,twisniewski,sparky,dragana

Differential Revision: https://phabricator.services.mozilla.com/D152428
parent a1a992d3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
 * 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/. */

/* eslint-env mozilla/process-script */

"use strict";

// Note: This script is used only when a static registration for our
+1 −0
Original line number Diff line number Diff line
@@ -322,6 +322,7 @@ async function safeCloseBrowserConsole({ clearOutput = false } = {}) {
 * we listen to this message to cleanup the observer.
 */
function highlighterTestActorBootstrap() {
  /* eslint-env mozilla/process-script */
  const HIGHLIGHTER_TEST_ACTOR_URL =
    "chrome://mochitests/content/browser/devtools/client/shared/test/highlighter-test-actor.js";

+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
 * 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/. */

/* eslint-env mozilla/process-script */

"use strict";

const { XPCOMUtils } = ChromeUtils.importESModule(
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
 * 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/. */

/* eslint-env mozilla/process-script */

"use strict";

/**
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 * 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/. */

/* global addMessageListener, removeMessageListener */
/* eslint-env mozilla/process-script */

"use strict";

Loading