Bug 763111 - Use gBrowser.docShell for brevity in bug 748477. r=dao

This commit is contained in:
Saurabh Anand 2012-06-09 05:52:24 +05:30
Родитель 0789db619f
Коммит d94c81930f
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -7170,9 +7170,8 @@ let gPrivateBrowsingUI = {
* and the setter should only be used in tests.
*/
get privateWindow() {
return gBrowser.selectedTab.linkedBrowser
.docShell.QueryInterface(Ci.nsILoadContext)
.usePrivateBrowsing;
return gBrowser.docShell.QueryInterface(Ci.nsILoadContext)
.usePrivateBrowsing;
}
};