2014-03-27 01:03:42 -07: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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["DirectoryLinksProvider"];
|
|
|
|
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Cu = Components.utils;
|
2014-05-09 08:24:30 -07:00
|
|
|
const XMLHttpRequest =
|
|
|
|
Components.Constructor("@mozilla.org/xmlextras/xmlhttprequest;1", "nsIXMLHttpRequest");
|
2014-03-27 01:03:42 -07:00
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
2014-05-27 13:59:33 -07:00
|
|
|
Cu.import("resource://gre/modules/Task.jsm");
|
2014-03-27 01:03:42 -07:00
|
|
|
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "NetUtil",
|
|
|
|
"resource://gre/modules/NetUtil.jsm");
|
2014-08-29 13:35:59 -07:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "NewTabUtils",
|
|
|
|
"resource://gre/modules/NewTabUtils.jsm");
|
2014-05-09 08:24:30 -07:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
|
|
|
"resource://gre/modules/osfile.jsm")
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "Promise",
|
|
|
|
"resource://gre/modules/Promise.jsm");
|
2014-05-27 13:59:34 -07:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "gTextDecoder", () => {
|
|
|
|
return new TextDecoder();
|
|
|
|
});
|
2014-03-27 01:03:42 -07:00
|
|
|
|
2014-05-09 08:24:30 -07:00
|
|
|
// The filename where directory links are stored locally
|
|
|
|
const DIRECTORY_LINKS_FILE = "directoryLinks.json";
|
2014-07-23 14:33:13 -07:00
|
|
|
const DIRECTORY_LINKS_TYPE = "application/json";
|
2014-03-27 01:03:42 -07:00
|
|
|
|
|
|
|
// The preference that tells whether to match the OS locale
|
|
|
|
const PREF_MATCH_OS_LOCALE = "intl.locale.matchOS";
|
|
|
|
|
|
|
|
// The preference that tells what locale the user selected
|
|
|
|
const PREF_SELECTED_LOCALE = "general.useragent.locale";
|
|
|
|
|
|
|
|
// The preference that tells where to obtain directory links
|
2014-05-27 13:59:33 -07:00
|
|
|
const PREF_DIRECTORY_SOURCE = "browser.newtabpage.directory.source";
|
2014-03-27 01:03:42 -07:00
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
// The preference that tells where to send click/view pings
|
|
|
|
const PREF_DIRECTORY_PING = "browser.newtabpage.directory.ping";
|
2014-06-09 22:03:23 -07:00
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
// The preference that tells if newtab is enhanced
|
|
|
|
const PREF_NEWTAB_ENHANCED = "browser.newtabpage.enhanced";
|
2014-06-09 22:03:23 -07:00
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
// The frecency of a directory link
|
|
|
|
const DIRECTORY_FRECENCY = 1000;
|
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
// Divide frecency by this amount for pings
|
|
|
|
const PING_SCORE_DIVISOR = 10000;
|
|
|
|
|
|
|
|
// Allowed ping actions remotely stored as columns: case-insensitive [a-z0-9_]
|
|
|
|
const PING_ACTIONS = ["block", "click", "pin", "sponsored", "sponsored_link", "unpin", "view"];
|
2014-03-31 01:51:22 -07:00
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
/**
|
|
|
|
* Singleton that serves as the provider of directory links.
|
|
|
|
* Directory links are a hard-coded set of links shown if a user's link
|
|
|
|
* inventory is empty.
|
|
|
|
*/
|
|
|
|
let DirectoryLinksProvider = {
|
|
|
|
|
|
|
|
__linksURL: null,
|
|
|
|
|
2014-05-27 13:59:33 -07:00
|
|
|
_observers: new Set(),
|
|
|
|
|
|
|
|
// links download deferred, resolved upon download completion
|
|
|
|
_downloadDeferred: null,
|
|
|
|
|
|
|
|
// download default interval is 24 hours in milliseconds
|
|
|
|
_downloadIntervalMS: 86400000,
|
2014-03-27 01:03:42 -07:00
|
|
|
|
2014-07-23 11:02:49 -07:00
|
|
|
/**
|
|
|
|
* A mapping from eTLD+1 to an enhanced link objects
|
|
|
|
*/
|
|
|
|
_enhancedLinks: new Map(),
|
|
|
|
|
2014-05-09 08:24:30 -07:00
|
|
|
get _observedPrefs() Object.freeze({
|
2014-08-08 16:40:40 -07:00
|
|
|
enhanced: PREF_NEWTAB_ENHANCED,
|
2014-03-27 01:03:42 -07:00
|
|
|
linksURL: PREF_DIRECTORY_SOURCE,
|
|
|
|
matchOSLocale: PREF_MATCH_OS_LOCALE,
|
|
|
|
prefSelectedLocale: PREF_SELECTED_LOCALE,
|
|
|
|
}),
|
|
|
|
|
|
|
|
get _linksURL() {
|
|
|
|
if (!this.__linksURL) {
|
|
|
|
try {
|
2014-05-09 08:24:30 -07:00
|
|
|
this.__linksURL = Services.prefs.getCharPref(this._observedPrefs["linksURL"]);
|
2014-03-27 01:03:42 -07:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Cu.reportError("Error fetching directory links url from prefs: " + e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.__linksURL;
|
|
|
|
},
|
|
|
|
|
2014-05-09 08:24:30 -07:00
|
|
|
/**
|
|
|
|
* Gets the currently selected locale for display.
|
|
|
|
* @return the selected locale or "en-US" if none is selected
|
|
|
|
*/
|
|
|
|
get locale() {
|
|
|
|
let matchOS;
|
|
|
|
try {
|
|
|
|
matchOS = Services.prefs.getBoolPref(PREF_MATCH_OS_LOCALE);
|
|
|
|
}
|
|
|
|
catch (e) {}
|
|
|
|
|
|
|
|
if (matchOS) {
|
|
|
|
return Services.locale.getLocaleComponentForUserAgent();
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
let locale = Services.prefs.getComplexValue(PREF_SELECTED_LOCALE,
|
|
|
|
Ci.nsIPrefLocalizedString);
|
|
|
|
if (locale) {
|
|
|
|
return locale.data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {}
|
|
|
|
|
|
|
|
try {
|
|
|
|
return Services.prefs.getCharPref(PREF_SELECTED_LOCALE);
|
|
|
|
}
|
|
|
|
catch (e) {}
|
|
|
|
|
|
|
|
return "en-US";
|
|
|
|
},
|
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
/**
|
|
|
|
* Set appropriate default ping behavior controlled by enhanced pref
|
|
|
|
*/
|
|
|
|
_setDefaultEnhanced: function DirectoryLinksProvider_setDefaultEnhanced() {
|
|
|
|
if (!Services.prefs.prefHasUserValue(PREF_NEWTAB_ENHANCED)) {
|
|
|
|
let enhanced = true;
|
|
|
|
try {
|
|
|
|
// Default to not enhanced if DNT is set to tell websites to not track
|
|
|
|
if (Services.prefs.getBoolPref("privacy.donottrackheader.enabled") &&
|
|
|
|
Services.prefs.getIntPref("privacy.donottrackheader.value") == 1) {
|
|
|
|
enhanced = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(ex) {}
|
|
|
|
Services.prefs.setBoolPref(PREF_NEWTAB_ENHANCED, enhanced);
|
|
|
|
}
|
|
|
|
},
|
2014-03-31 01:51:22 -07:00
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
observe: function DirectoryLinksProvider_observe(aSubject, aTopic, aData) {
|
|
|
|
if (aTopic == "nsPref:changed") {
|
2014-08-08 16:40:40 -07:00
|
|
|
switch (aData) {
|
|
|
|
// Re-set the default in case the user clears the pref
|
|
|
|
case this._observedPrefs.enhanced:
|
|
|
|
this._setDefaultEnhanced();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case this._observedPrefs.linksURL:
|
|
|
|
delete this.__linksURL;
|
|
|
|
// fallthrough
|
|
|
|
|
|
|
|
// Force directory download on changes to fetch related prefs
|
|
|
|
case this._observedPrefs.matchOSLocale:
|
|
|
|
case this._observedPrefs.prefSelectedLocale:
|
|
|
|
this._fetchAndCacheLinksIfNecessary(true);
|
|
|
|
break;
|
2014-03-27 01:03:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_addPrefsObserver: function DirectoryLinksProvider_addObserver() {
|
2014-05-09 08:24:30 -07:00
|
|
|
for (let pref in this._observedPrefs) {
|
|
|
|
let prefName = this._observedPrefs[pref];
|
2014-03-27 01:03:42 -07:00
|
|
|
Services.prefs.addObserver(prefName, this, false);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_removePrefsObserver: function DirectoryLinksProvider_removeObserver() {
|
2014-05-09 08:24:30 -07:00
|
|
|
for (let pref in this._observedPrefs) {
|
|
|
|
let prefName = this._observedPrefs[pref];
|
2014-03-27 01:03:42 -07:00
|
|
|
Services.prefs.removeObserver(prefName, this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-05-09 08:24:30 -07:00
|
|
|
_fetchAndCacheLinks: function DirectoryLinksProvider_fetchAndCacheLinks(uri) {
|
|
|
|
let deferred = Promise.defer();
|
|
|
|
let xmlHttp = new XMLHttpRequest();
|
|
|
|
|
|
|
|
let self = this;
|
|
|
|
xmlHttp.onload = function(aResponse) {
|
|
|
|
let json = this.responseText;
|
|
|
|
if (this.status && this.status != 200) {
|
|
|
|
json = "{}";
|
|
|
|
}
|
2014-05-27 13:59:33 -07:00
|
|
|
OS.File.writeAtomic(self._directoryFilePath, json, {tmpPath: self._directoryFilePath + ".tmp"})
|
2014-05-09 08:24:30 -07:00
|
|
|
.then(() => {
|
|
|
|
deferred.resolve();
|
|
|
|
},
|
|
|
|
() => {
|
|
|
|
deferred.reject("Error writing uri data in profD.");
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
xmlHttp.onerror = function(e) {
|
|
|
|
deferred.reject("Fetching " + uri + " results in error code: " + e.target.status);
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
xmlHttp.open('POST', uri);
|
2014-07-23 14:33:13 -07:00
|
|
|
// Override the type so XHR doesn't complain about not well-formed XML
|
|
|
|
xmlHttp.overrideMimeType(DIRECTORY_LINKS_TYPE);
|
|
|
|
// Set the appropriate request type for servers that require correct types
|
|
|
|
xmlHttp.setRequestHeader("Content-Type", DIRECTORY_LINKS_TYPE);
|
2014-06-02 09:14:08 -07:00
|
|
|
xmlHttp.send(JSON.stringify({
|
|
|
|
locale: this.locale,
|
|
|
|
}));
|
2014-05-09 08:24:30 -07:00
|
|
|
} catch (e) {
|
|
|
|
deferred.reject("Error fetching " + uri);
|
|
|
|
Cu.reportError(e);
|
|
|
|
}
|
|
|
|
return deferred.promise;
|
|
|
|
},
|
|
|
|
|
2014-05-27 13:59:33 -07:00
|
|
|
/**
|
|
|
|
* Downloads directory links if needed
|
|
|
|
* @return promise resolved immediately if no download needed, or upon completion
|
|
|
|
*/
|
|
|
|
_fetchAndCacheLinksIfNecessary: function DirectoryLinksProvider_fetchAndCacheLinksIfNecessary(forceDownload=false) {
|
|
|
|
if (this._downloadDeferred) {
|
|
|
|
// fetching links already - just return the promise
|
|
|
|
return this._downloadDeferred.promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (forceDownload || this._needsDownload) {
|
|
|
|
this._downloadDeferred = Promise.defer();
|
|
|
|
this._fetchAndCacheLinks(this._linksURL).then(() => {
|
|
|
|
// the new file was successfully downloaded and cached, so update a timestamp
|
|
|
|
this._lastDownloadMS = Date.now();
|
|
|
|
this._downloadDeferred.resolve();
|
|
|
|
this._downloadDeferred = null;
|
|
|
|
this._callObservers("onManyLinksChanged")
|
|
|
|
},
|
|
|
|
error => {
|
|
|
|
this._downloadDeferred.resolve();
|
|
|
|
this._downloadDeferred = null;
|
|
|
|
this._callObservers("onDownloadFail");
|
|
|
|
});
|
|
|
|
return this._downloadDeferred.promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
// download is not needed
|
|
|
|
return Promise.resolve();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if download is needed, false otherwise
|
|
|
|
*/
|
|
|
|
get _needsDownload () {
|
|
|
|
// fail if last download occured less then 24 hours ago
|
|
|
|
if ((Date.now() - this._lastDownloadMS) > this._downloadIntervalMS) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2014-05-27 13:59:34 -07:00
|
|
|
/**
|
|
|
|
* Reads directory links file and parses its content
|
|
|
|
* @return a promise resolved to valid list of links or [] if read or parse fails
|
|
|
|
*/
|
|
|
|
_readDirectoryLinksFile: function DirectoryLinksProvider_readDirectoryLinksFile() {
|
|
|
|
return OS.File.read(this._directoryFilePath).then(binaryData => {
|
|
|
|
let output;
|
|
|
|
try {
|
|
|
|
let locale = this.locale;
|
|
|
|
let json = gTextDecoder.decode(binaryData);
|
2014-06-09 22:03:23 -07:00
|
|
|
let list = JSON.parse(json);
|
|
|
|
output = list[locale];
|
2014-05-27 13:59:34 -07:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Cu.reportError(e);
|
|
|
|
}
|
|
|
|
return output || [];
|
|
|
|
},
|
|
|
|
error => {
|
|
|
|
Cu.reportError(error);
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-06-09 22:03:23 -07:00
|
|
|
/**
|
2014-08-08 16:40:40 -07:00
|
|
|
* Report some action on a newtab page (view, click)
|
|
|
|
* @param sites Array of sites shown on newtab page
|
2014-06-09 22:03:23 -07:00
|
|
|
* @param action String of the behavior to report
|
2014-08-08 16:40:40 -07:00
|
|
|
* @param triggeringSiteIndex optional Int index of the site triggering action
|
|
|
|
* @return download promise
|
2014-06-09 22:03:23 -07:00
|
|
|
*/
|
2014-08-08 16:40:40 -07:00
|
|
|
reportSitesAction: function DirectoryLinksProvider_reportSitesAction(sites, action, triggeringSiteIndex) {
|
|
|
|
let newtabEnhanced = false;
|
|
|
|
let pingEndPoint = "";
|
2014-06-09 22:03:23 -07:00
|
|
|
try {
|
2014-08-08 16:40:40 -07:00
|
|
|
newtabEnhanced = Services.prefs.getBoolPref(PREF_NEWTAB_ENHANCED);
|
|
|
|
pingEndPoint = Services.prefs.getCharPref(PREF_DIRECTORY_PING);
|
2014-06-09 22:03:23 -07:00
|
|
|
}
|
2014-08-08 16:40:40 -07:00
|
|
|
catch (ex) {}
|
|
|
|
|
|
|
|
// Only send pings when enhancing tiles with an endpoint and valid action
|
|
|
|
let invalidAction = PING_ACTIONS.indexOf(action) == -1;
|
|
|
|
if (!newtabEnhanced || pingEndPoint == "" || invalidAction) {
|
|
|
|
return Promise.resolve();
|
2014-06-09 22:03:23 -07:00
|
|
|
}
|
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
let actionIndex;
|
|
|
|
let data = {
|
|
|
|
locale: this.locale,
|
|
|
|
tiles: sites.reduce((tiles, site, pos) => {
|
|
|
|
// Only add data for non-empty tiles
|
|
|
|
if (site) {
|
|
|
|
// Remember which tiles data triggered the action
|
|
|
|
let {link} = site;
|
|
|
|
let tilesIndex = tiles.length;
|
|
|
|
if (triggeringSiteIndex == pos) {
|
|
|
|
actionIndex = tilesIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the payload in a way so keys can be excluded when stringified
|
|
|
|
let id = link.directoryId;
|
|
|
|
tiles.push({
|
|
|
|
id: id || site.enhancedId,
|
|
|
|
pin: site.isPinned() ? 1 : undefined,
|
|
|
|
pos: pos != tilesIndex ? pos : undefined,
|
|
|
|
score: Math.round(link.frecency / PING_SCORE_DIVISOR) || undefined,
|
2014-09-04 08:54:00 -07:00
|
|
|
url: site.enhancedId && "",
|
2014-08-08 16:40:40 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return tiles;
|
|
|
|
}, []),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide a direct index to the tile triggering the action
|
|
|
|
if (actionIndex !== undefined) {
|
|
|
|
data[action] = actionIndex;
|
2014-06-09 22:03:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Package the data to be sent with the ping
|
|
|
|
let ping = new XMLHttpRequest();
|
2014-08-08 16:40:40 -07:00
|
|
|
ping.open("POST", pingEndPoint + (action == "view" ? "view" : "click"));
|
|
|
|
ping.send(JSON.stringify(data));
|
2014-06-09 22:03:23 -07:00
|
|
|
|
2014-08-08 16:40:40 -07:00
|
|
|
// Use this as an opportunity to potentially fetch new links
|
|
|
|
return this._fetchAndCacheLinksIfNecessary();
|
2014-05-27 13:59:33 -07:00
|
|
|
},
|
|
|
|
|
2014-07-23 11:02:49 -07:00
|
|
|
/**
|
|
|
|
* Get the enhanced link object for a link (whether history or directory)
|
|
|
|
*/
|
|
|
|
getEnhancedLink: function DirectoryLinksProvider_getEnhancedLink(link) {
|
|
|
|
// Use the provided link if it's already enhanced
|
|
|
|
return link.enhancedImageURI && link ||
|
2014-08-29 13:35:59 -07:00
|
|
|
this._enhancedLinks.get(NewTabUtils.extractSite(link.url));
|
2014-07-23 11:02:49 -07:00
|
|
|
},
|
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
/**
|
|
|
|
* Gets the current set of directory links.
|
|
|
|
* @param aCallback The function that the array of links is passed to.
|
|
|
|
*/
|
|
|
|
getLinks: function DirectoryLinksProvider_getLinks(aCallback) {
|
2014-05-27 13:59:34 -07:00
|
|
|
this._readDirectoryLinksFile().then(rawLinks => {
|
2014-07-23 11:02:49 -07:00
|
|
|
// Reset the cache of enhanced images for this new set of links
|
|
|
|
this._enhancedLinks.clear();
|
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
// all directory links have a frecency of DIRECTORY_FRECENCY
|
|
|
|
aCallback(rawLinks.map((link, position) => {
|
2014-07-23 11:02:49 -07:00
|
|
|
// Stash the enhanced image for the site
|
|
|
|
if (link.enhancedImageURI) {
|
2014-08-29 13:35:59 -07:00
|
|
|
this._enhancedLinks.set(NewTabUtils.extractSite(link.url), link);
|
2014-07-23 11:02:49 -07:00
|
|
|
}
|
|
|
|
|
2014-03-27 01:03:42 -07:00
|
|
|
link.frecency = DIRECTORY_FRECENCY;
|
|
|
|
link.lastVisitDate = rawLinks.length - position;
|
|
|
|
return link;
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
init: function DirectoryLinksProvider_init() {
|
2014-08-08 16:40:40 -07:00
|
|
|
this._setDefaultEnhanced();
|
2014-03-27 01:03:42 -07:00
|
|
|
this._addPrefsObserver();
|
2014-05-27 13:59:33 -07:00
|
|
|
// setup directory file path and last download timestamp
|
|
|
|
this._directoryFilePath = OS.Path.join(OS.Constants.Path.localProfileDir, DIRECTORY_LINKS_FILE);
|
|
|
|
this._lastDownloadMS = 0;
|
|
|
|
return Task.spawn(function() {
|
|
|
|
// get the last modified time of the links file if it exists
|
|
|
|
let doesFileExists = yield OS.File.exists(this._directoryFilePath);
|
|
|
|
if (doesFileExists) {
|
|
|
|
let fileInfo = yield OS.File.stat(this._directoryFilePath);
|
|
|
|
this._lastDownloadMS = Date.parse(fileInfo.lastModificationDate);
|
|
|
|
}
|
|
|
|
// fetch directory on startup without force
|
|
|
|
yield this._fetchAndCacheLinksIfNecessary();
|
|
|
|
}.bind(this));
|
2014-03-27 01:03:42 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the object to its pre-init state
|
|
|
|
*/
|
|
|
|
reset: function DirectoryLinksProvider_reset() {
|
|
|
|
delete this.__linksURL;
|
|
|
|
this._removePrefsObserver();
|
|
|
|
this._removeObservers();
|
|
|
|
},
|
|
|
|
|
|
|
|
addObserver: function DirectoryLinksProvider_addObserver(aObserver) {
|
2014-05-27 13:59:33 -07:00
|
|
|
this._observers.add(aObserver);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeObserver: function DirectoryLinksProvider_removeObserver(aObserver) {
|
|
|
|
this._observers.delete(aObserver);
|
2014-03-27 01:03:42 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_callObservers: function DirectoryLinksProvider__callObservers(aMethodName, aArg) {
|
|
|
|
for (let obs of this._observers) {
|
|
|
|
if (typeof(obs[aMethodName]) == "function") {
|
|
|
|
try {
|
|
|
|
obs[aMethodName](this, aArg);
|
|
|
|
} catch (err) {
|
|
|
|
Cu.reportError(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_removeObservers: function() {
|
2014-05-27 13:59:33 -07:00
|
|
|
this._observers.clear();
|
2014-03-27 01:03:42 -07:00
|
|
|
}
|
|
|
|
};
|