summaryrefslogtreecommitdiffstats
path: root/browser/components/places/PlacesUIUtils.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /browser/components/places/PlacesUIUtils.sys.mjs
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/places/PlacesUIUtils.sys.mjs')
-rw-r--r--browser/components/places/PlacesUIUtils.sys.mjs8
1 files changed, 3 insertions, 5 deletions
diff --git a/browser/components/places/PlacesUIUtils.sys.mjs b/browser/components/places/PlacesUIUtils.sys.mjs
index 415a97ec6c..b9e9efe70e 100644
--- a/browser/components/places/PlacesUIUtils.sys.mjs
+++ b/browser/components/places/PlacesUIUtils.sys.mjs
@@ -41,8 +41,6 @@ let InternalFaviconLoader = {
* The options object containing:
* @param {object} options.uri
* The URI of the favicon to cancel.
- * @param {number} options.innerWindowID
- * The inner window ID of the window. Unused.
* @param {number} options.timerID
* The timer ID of the timeout to be cancelled
* @param {*} options.callback
@@ -50,7 +48,7 @@ let InternalFaviconLoader = {
* @param {string} reason
* The reason for cancelling the request.
*/
- _cancelRequest({ uri, innerWindowID, timerID, callback }, reason) {
+ _cancelRequest({ uri, timerID, callback }, reason) {
// Break cycle
let request = callback.request;
delete callback.request;
@@ -1232,8 +1230,8 @@ export var PlacesUIUtils = {
* Helpers for consumers of editBookmarkOverlay which don't have a node as their input.
*
* Given a bookmark object for either a url bookmark or a folder, returned by
- * Bookmarks.fetch (see Bookmark.jsm), this creates a node-like object suitable for
- * initialising the edit overlay with it.
+ * Bookmarks.fetch (see Bookmark.sys.mjs), this creates a node-like object
+ * suitable for initialising the edit overlay with it.
*
* @param {object} aFetchInfo
* a bookmark object returned by Bookmarks.fetch.