Bug 1306397 - Remove B2G event 'network-active-changed' and consumers from non-B2G/Gonk files: dom/presentation. r=schien

MozReview-Commit-ID: 1tTdMntEo54

--HG--
extra : rebase_source : 6337b60928644891cd7f4e6fe3018c7eda5fa978
This commit is contained in:
Sebastian Hengst 2016-09-29 19:53:44 +02:00
Родитель dd7aeb94f5
Коммит 0f952f34dd
1 изменённых файлов: 0 добавлений и 18 удалений

Просмотреть файл

@ -118,8 +118,6 @@ PresentationControlService.prototype = {
DEBUG && log("PresentationControlService - service start on port: " + this._port); // jshint ignore:line
// Monitor network interface change to restart server socket.
// Only B2G has nsINetworkManager
Services.obs.addObserver(this, "network-active-changed", false);
Services.obs.addObserver(this, "network:offline-status-changed", false);
this._notifyServerReady();
@ -324,7 +322,6 @@ PresentationControlService.prototype = {
this._serverSocket.close();
this._serverSocket = null;
Services.obs.removeObserver(this, "network-active-changed");
Services.obs.removeObserver(this, "network:offline-status-changed");
this._notifyServerStopped(Cr.NS_OK);
@ -336,21 +333,6 @@ PresentationControlService.prototype = {
observe: function(aSubject, aTopic, aData) {
DEBUG && log("PresentationControlService - observe: " + aTopic); // jshint ignore:line
switch (aTopic) {
case "network-active-changed": {
if (!aSubject) {
DEBUG && log("No active network"); // jshint ignore:line
return;
}
/**
* Restart service only when original status is online because other
* cases will be handled by "network:offline-status-changed".
*/
if (!Services.io.offline) {
this._restartServer();
}
break;
}
case "network:offline-status-changed": {
if (aData == "offline") {
DEBUG && log("network offline"); // jshint ignore:line