Bug 722987 - Places UI makes decisions based on global Private Browsing state; r=ehsan

This commit is contained in:
Andres Hernandez 2012-10-24 14:04:38 -06:00
Родитель 38edfa2bc6
Коммит 807d204779
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -81,7 +81,9 @@ var PlacesOrganizer = {
document.getElementById("placesContext")
.removeChild(document.getElementById("placesContext_show:info"));
#ifndef MOZ_PER_WINDOW_PRIVATE_BROWSING
gPrivateBrowsingListener.init();
#endif
},
QueryInterface: function PO_QueryInterface(aIID) {
@ -113,7 +115,9 @@ var PlacesOrganizer = {
},
destroy: function PO_destroy() {
#ifndef MOZ_PER_WINDOW_PRIVATE_BROWSING
gPrivateBrowsingListener.uninit();
#endif
},
_location: null,
@ -1354,6 +1358,7 @@ var ViewMenu = {
}
}
#ifndef MOZ_PER_WINDOW_PRIVATE_BROWSING
/**
* Disables the "Import and Backup->Import From Another Browser" menu item
* in private browsing mode.
@ -1390,3 +1395,4 @@ let gPrivateBrowsingListener = {
this._cmd_import.removeAttribute("disabled");
}
};
#endif