dom/activities/src/ActivityMessageConfigurator.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:6a2e7c04c916
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/. */
4
5 "use strict";
6
7 const Ci = Components.interfaces;
8 const Cu = Components.utils;
9
10 Cu.import("resource://gre/modules/XPCOMUtils.jsm");
11
12 function debug(aMsg) {
13 // dump("-- ActivityMessageConfigurator.js " + Date.now() + " : " + aMsg + "\n");
14 }
15
16 /**
17 * nsISystemMessagesConfigurator implementation.
18 */
19 function ActivityMessageConfigurator() {
20 debug("ActivityMessageConfigurator");
21 }
22
23 ActivityMessageConfigurator.prototype = {
24 get mustShowRunningApp() {
25 debug("mustShowRunningApp returning true");
26 return true;
27 },
28
29 classID: Components.ID("{d2296daa-c406-4c5e-b698-e5f2c1715798}"),
30 QueryInterface: XPCOMUtils.generateQI([Ci.nsISystemMessagesConfigurator])
31 }
32
33 this.NSGetFactory = XPCOMUtils.generateNSGetFactory([ActivityMessageConfigurator]);

mercurial