Bumping gaia.json for 8 gaia revision(s) a=gaia-bump
[gecko.git] / dom / activities / ActivityMessageConfigurator.js
blobc0c358c13e51619a63e90ea520827804ee8f0ae2
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 const Ci = Components.interfaces;
8 const Cu = Components.utils;
10 Cu.import("resource://gre/modules/XPCOMUtils.jsm");
12 function debug(aMsg) {
13   // dump("-- ActivityMessageConfigurator.js " + Date.now() + " : " + aMsg + "\n");
16 /**
17   * nsISystemMessagesConfigurator implementation.
18   */
19 function ActivityMessageConfigurator() {
20   debug("ActivityMessageConfigurator");
23 ActivityMessageConfigurator.prototype = {
24   get mustShowRunningApp() {
25     debug("mustShowRunningApp returning true");
26     return true;
27   },
29   classID: Components.ID("{d2296daa-c406-4c5e-b698-e5f2c1715798}"),
30   QueryInterface: XPCOMUtils.generateQI([Ci.nsISystemMessagesConfigurator])
33 this.NSGetFactory = XPCOMUtils.generateNSGetFactory([ActivityMessageConfigurator]);