Backed out changeset 322fde2d53bf (bug 1356569) so bug 1355161 can be backed out. r=backout

This commit is contained in:
Sebastian Hengst
2017-04-14 23:39:22 +02:00
parent 4189eac09e
commit 42670ceca0
834 changed files with 1534 additions and 1515 deletions

View File

@@ -855,7 +855,7 @@ this.DownloadIntegration = {
if (!DownloadObserver.observersAdded) {
DownloadObserver.observersAdded = true;
for (let topic of kObserverTopics) {
Services.obs.addObserver(DownloadObserver, topic);
Services.obs.addObserver(DownloadObserver, topic, false);
}
}
return Promise.resolve();
@@ -1111,7 +1111,7 @@ this.DownloadObserver = {
this.DownloadHistoryObserver = function (aList)
{
this._list = aList;
PlacesUtils.history.addObserver(this);
PlacesUtils.history.addObserver(this, false);
}
this.DownloadHistoryObserver.prototype = {

View File

@@ -212,7 +212,7 @@ function promiseWaitForVisit(aUrl) {
onClearHistory() {},
onPageChanged() {},
onDeleteVisits() {},
});
}, false);
return deferred.promise;
}