Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / toolkit / actors / PurgeSessionHistoryChild.sys.mjs
blob32de7929a071bb71333069fd3288903182f624ed
1 /* vim: set ts=2 sw=2 sts=2 et tw=80: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 export class PurgeSessionHistoryChild extends JSWindowActorChild {
7   receiveMessage(message) {
8     if (message.name != "Browser:PurgeSessionHistory") {
9       return;
10     }
11     let sessionHistory = this.docShell.QueryInterface(
12       Ci.nsIWebNavigation
13     ).sessionHistory;
14     if (!sessionHistory) {
15       return;
16     }
18     // place the entry at current index at the end of the history list, so it won't get removed
19     if (sessionHistory.index < sessionHistory.count - 1) {
20       let legacy = sessionHistory.legacySHistory;
21       let indexEntry = legacy.getEntryAtIndex(sessionHistory.index);
22       indexEntry.QueryInterface(Ci.nsISHEntry);
23       legacy.addEntry(indexEntry, true);
24     }
26     let purge = sessionHistory.count;
27     if (this.document.location.href != "about:blank") {
28       --purge; // Don't remove the page the user's staring at from shistory
29     }
31     if (purge > 0) {
32       sessionHistory.legacySHistory.purgeHistory(purge);
33     }
34   }