Skip to content

Commit

Permalink
Bug 817879 - Update bad resource paths in devtools. r=jwalker
Browse files Browse the repository at this point in the history
  • Loading branch information
jmathies committed Dec 5, 2012
1 parent aba24e2 commit 8c9db76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browser/devtools/framework/Toolbox.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "CommandUtils",

// DO NOT put Require.jsm or gcli.jsm into lazy getters as this breaks the
// requisition import a few lines down.
Cu.import("resource://gre/modules/devtools/gcli.jsm");
Cu.import("resource:///modules/devtools/gcli.jsm");
Cu.import("resource://gre/modules/devtools/Require.jsm");

let Requisition = require('gcli/cli').Requisition;
Expand Down
2 changes: 1 addition & 1 deletion browser/devtools/framework/test/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
let tempScope = {};
Components.utils.import("resource:///modules/devtools/Target.jsm", tempScope);
let TargetFactory = tempScope.TargetFactory;
Components.utils.import("resource:///modules/devtools/Console.jsm", tempScope);
Components.utils.import("resource://gre/modules/devtools/Console.jsm", tempScope);
let console = tempScope.console;

/**
Expand Down
2 changes: 1 addition & 1 deletion browser/devtools/inspector/InspectorPanel.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource:///modules/devtools/EventEmitter.jsm");

XPCOMUtils.defineLazyModuleGetter(this, "MarkupView",
"resource://gre/modules/devtools/MarkupView.jsm");
"resource:///modules/devtools/MarkupView.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "Selection",
"resource:///modules/devtools/Selection.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "HTMLBreadcrumbs",
Expand Down

0 comments on commit 8c9db76

Please sign in to comment.