author | Mike Hommey <mh+mozilla@glandium.org> |
Wed, 05 Sep 2012 16:42:10 +0200 | |
changeset 104303 | d6b20244c71b6f46020824259697d4b4dff7d5fc |
parent 104302 | 4c3fae3b91565b5301231e3e59a5792277e55536 |
child 104304 | aefe788f58363903b99098b2e8d6b64f157cee9d |
push id | 23417 |
push user | ryanvm@gmail.com |
push date | Thu, 06 Sep 2012 02:27:31 +0000 |
treeherder | mozilla-central@501f4e46a88c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jwalker |
bugs | 787443 |
milestone | 18.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/devtools/commandline/CmdCmd.jsm | file | annotate | diff | comparison | revisions | |
browser/devtools/commandline/CmdCookie.jsm | file | annotate | diff | comparison | revisions |
--- a/browser/devtools/commandline/CmdCmd.jsm +++ b/browser/devtools/commandline/CmdCmd.jsm @@ -13,17 +13,17 @@ let prefSvc = "@mozilla.org/preferences- XPCOMUtils.defineLazyGetter(this, "prefBranch", function() { let prefService = Cc[prefSvc].getService(Ci.nsIPrefService); return prefService.getBranch(null).QueryInterface(Ci.nsIPrefBranch2); }); XPCOMUtils.defineLazyModuleGetter(this, "NetUtil", "resource://gre/modules/NetUtil.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "console", - "resource:///modules/devtools/Console.jsm"); + "resource://gre/modules/devtools/Console.jsm"); const PREF_DIR = "devtools.commands.dir"; /** * A place to store the names of the commands that we have added as a result of * calling refreshAutoCommands(). Used by refreshAutoCommands to remove the * added commands. */
--- a/browser/devtools/commandline/CmdCookie.jsm +++ b/browser/devtools/commandline/CmdCookie.jsm @@ -5,17 +5,17 @@ const { classes: Cc, interfaces: Ci, utils: Cu } = Components; let EXPORTED_SYMBOLS = [ ]; Cu.import("resource:///modules/devtools/gcli.jsm"); Cu.import("resource://gre/modules/XPCOMUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "console", - "resource:///modules/devtools/Console.jsm"); + "resource://gre/modules/devtools/Console.jsm"); // We should really be using nsICookieManager so we can read more than just the // key/value of cookies. The difficulty is filtering the cookies that are // relevant to the current page. See // https://github.com/firebug/firebug/blob/master/extension/content/firebug/cookies/cookieObserver.js#L123 // For details on how this is done with Firebug /**