Skip to content

Commit

Permalink
Bug 1490301 - Always use relative paths in new about:debugging;r=daisuke
Browse files Browse the repository at this point in the history
Differential Revision: https://phabricator.services.mozilla.com/D6398

--HG--
extra : moz-landing-system : lando
  • Loading branch information
juliandescottes committed Sep 21, 2018
1 parent 672c025 commit f0fe1b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ const {
getAddonForm,
openTemporaryExtension,
uninstallAddon,
} = require("devtools/client/aboutdebugging-new/src/modules/extensions-helper");
} = require("../modules/extensions-helper");

const {
getCurrentClient,
getCurrentRuntime
} = require("devtools/client/aboutdebugging-new/src/modules/runtimes-state-helper");
} = require("../modules/runtimes-state-helper");

const {
DEBUG_TARGETS,
Expand Down
2 changes: 1 addition & 1 deletion devtools/client/aboutdebugging-new/src/actions/runtimes.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Actions = require("./index");

const {
findRuntimeById,
} = require("devtools/client/aboutdebugging-new/src/modules/runtimes-state-helper");
} = require("../modules/runtimes-state-helper");

const {
CONNECT_RUNTIME_FAILURE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const {
const {
getExtensionUuid,
parseFileUri
} = require("devtools/client/aboutdebugging-new/src/modules/extensions-helper");
} = require("../modules/extensions-helper");

/**
* This middleware converts extensions object that get from DebuggerClient.listAddons()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const {

const {
findRuntimeById,
} = require("devtools/client/aboutdebugging-new/src/modules/runtimes-state-helper");
} = require("../modules/runtimes-state-helper");

// Map between known runtime types and nodes in the runtimes state.
const TYPE_TO_RUNTIMES_KEY = {
Expand Down

0 comments on commit f0fe1b2

Please sign in to comment.