Dactyloidae/toolkit/mozapps/extensions/internal/Content.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-02-10 04:00:58 -05:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2018-06-26 14:17:23 -04:00
/* globals addMessageListener*/
2018-02-10 04:00:58 -05:00
"use strict";
(function() {
var {classes: Cc, interfaces: Ci, utils: Cu} = Components;
2018-02-10 04:00:58 -05:00
var {Services} = Cu.import("resource://gre/modules/Services.jsm", {});
2018-02-10 04:00:58 -05:00
var nsIFile = Components.Constructor("@mozilla.org/file/local;1", "nsIFile",
2018-02-10 04:00:58 -05:00
"initWithPath");
const MSG_JAR_FLUSH = "AddonJarFlush";
2018-06-26 14:17:23 -04:00
const MSG_MESSAGE_MANAGER_CACHES_FLUSH = "AddonMessageManagerCachesFlush";
2018-02-10 04:00:58 -05:00
try {
if (Services.appinfo.processType !== Services.appinfo.PROCESS_TYPE_DEFAULT) {
2018-06-26 14:17:23 -04:00
// Propagate JAR cache flush notifications across process boundaries.
addMessageListener(MSG_JAR_FLUSH, function(message) {
2018-02-10 04:00:58 -05:00
let file = new nsIFile(message.data);
Services.obs.notifyObservers(file, "flush-cache-entry", null);
});
2018-06-26 14:17:23 -04:00
// Propagate message manager caches flush notifications across processes.
addMessageListener(MSG_MESSAGE_MANAGER_CACHES_FLUSH, function() {
Services.obs.notifyObservers(null, "message-manager-flush-caches", null);
});
2018-02-10 04:00:58 -05:00
}
2018-06-26 14:17:23 -04:00
} catch (e) {
2018-02-10 04:00:58 -05:00
Cu.reportError(e);
}
})();