Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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");
14 }
16 /**
17 * nsISystemMessagesConfigurator implementation.
18 */
19 function ActivityMessageConfigurator() {
20 debug("ActivityMessageConfigurator");
21 }
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])
31 }
33 this.NSGetFactory = XPCOMUtils.generateNSGetFactory([ActivityMessageConfigurator]);