summaryrefslogtreecommitdiffstats
path: root/b2g/components/CommandLine.js
blob: 6dc48bd3389f19bcd56d83bc7274a260e4185c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* This Source Code Form is subject to the terms of the Mozilla Public
 * 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/. */

const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "Services", "resource://gre/modules/Services.jsm");

// Small helper to expose nsICommandLine object to chrome code

function CommandlineHandler() {
  this.wrappedJSObject = this;
}

CommandlineHandler.prototype = {
    handle: function(cmdLine) {
      this.cmdLine = cmdLine;
      let win = Services.wm.getMostRecentWindow("navigator:browser");
      if (win && win.shell) {
        win.shell.handleCmdLine();
      }
    },

    helpInfo: "",
    classID: Components.ID("{385993fe-8710-4621-9fb1-00a09d8bec37}"),
    QueryInterface: XPCOMUtils.generateQI([Ci.nsICommandLineHandler]),
};

this.NSGetFactory = XPCOMUtils.generateNSGetFactory([CommandlineHandler]);