summaryrefslogtreecommitdiffstats
path: root/testing/specialpowers/content/SpecialPowersChild.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /testing/specialpowers/content/SpecialPowersChild.sys.mjs
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/specialpowers/content/SpecialPowersChild.sys.mjs')
-rw-r--r--testing/specialpowers/content/SpecialPowersChild.sys.mjs6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/specialpowers/content/SpecialPowersChild.sys.mjs b/testing/specialpowers/content/SpecialPowersChild.sys.mjs
index ed972e4315..61070fe4ce 100644
--- a/testing/specialpowers/content/SpecialPowersChild.sys.mjs
+++ b/testing/specialpowers/content/SpecialPowersChild.sys.mjs
@@ -473,7 +473,7 @@ export class SpecialPowersChild extends JSWindowActorChild {
}
async registeredServiceWorkers() {
- // Please see the comment in SpecialPowersObserver.jsm above
+ // Please see the comment in SpecialPowersParent.sys.mjs above
// this._serviceWorkerListener's assignment for what this returns.
if (this._serviceWorkerRegistered) {
// This test registered at least one service worker. Send a synchronous
@@ -825,14 +825,14 @@ export class SpecialPowersChild extends JSWindowActorChild {
* This function should be used when specialpowers is in content process but
* it want to get the notification from chrome space.
*
- * This function will call Services.obs.addObserver in SpecialPowersObserver
+ * This function will call Services.obs.addObserver in SpecialPowersParent
* (that is in chrome process) and forward the data received to SpecialPowers
* via messageManager.
* You can use this._addMessageListener("specialpowers-YOUR_TOPIC") to fire
* the callback.
*
* To get the expected data, you should modify
- * SpecialPowersObserver.prototype._registerObservers.observe. Or the message
+ * SpecialPowersParent.prototype._registerObservers.observe. Or the message
* you received from messageManager will only contain 'aData' from Service.obs.
*/
registerObservers(topic) {