Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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]);