summaryrefslogtreecommitdiffstats
path: root/browser/components/places/content/browserPlacesViews.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /browser/components/places/content/browserPlacesViews.js
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-adbda400be353e676059e335c3c0aaf99e719475.tar.xz
firefox-adbda400be353e676059e335c3c0aaf99e719475.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/places/content/browserPlacesViews.js')
-rw-r--r--browser/components/places/content/browserPlacesViews.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/browser/components/places/content/browserPlacesViews.js b/browser/components/places/content/browserPlacesViews.js
index 35cdd2b9d5..1d849e3297 100644
--- a/browser/components/places/content/browserPlacesViews.js
+++ b/browser/components/places/content/browserPlacesViews.js
@@ -277,7 +277,7 @@ class PlacesViewBase {
return this.controller.buildContextMenu(aPopup);
}
- destroyContextMenu(aPopup) {
+ destroyContextMenu() {
this._contextMenuShown = null;
}
@@ -458,7 +458,7 @@ class PlacesViewBase {
}
}
- nodeURIChanged(aPlacesNode, aURIString) {
+ nodeURIChanged(aPlacesNode) {
let elt = this._getDOMNodeForPlacesNode(aPlacesNode, true);
// There's no DOM node, thus there's nothing to be done when the URI changes.
@@ -519,7 +519,7 @@ class PlacesViewBase {
}
}
- nodeRemoved(aParentPlacesNode, aPlacesNode, aIndex) {
+ nodeRemoved(aParentPlacesNode, aPlacesNode) {
let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode);
let elt = this._getDOMNodeForPlacesNode(aPlacesNode);
@@ -1689,7 +1689,7 @@ class PlacesToolbar extends PlacesViewBase {
}
}
- _onMouseOut(aEvent) {
+ _onMouseOut() {
window.XULBrowserWindow.setOverLink("");
}
@@ -1852,7 +1852,7 @@ class PlacesToolbar extends PlacesViewBase {
aEvent.stopPropagation();
}
- _onDragLeave(aEvent) {
+ _onDragLeave() {
PlacesControllerDragHelper.currentDropTarget = null;
this._dropIndicator.collapsed = true;
@@ -1863,7 +1863,7 @@ class PlacesToolbar extends PlacesViewBase {
}
}
- _onDragEnd(aEvent) {
+ _onDragEnd() {
this._cleanupDragDetails();
}