Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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]);