summaryrefslogtreecommitdiffstats
path: root/dom/interfaces/base/nsIServiceWorkerManager.idl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
commitdef92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch)
tree2ef34b9ad8bb9a9220e05d60352558b15f513894 /dom/interfaces/base/nsIServiceWorkerManager.idl
parentAdding debian version 125.0.3-1. (diff)
downloadfirefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz
firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/interfaces/base/nsIServiceWorkerManager.idl')
-rw-r--r--dom/interfaces/base/nsIServiceWorkerManager.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/interfaces/base/nsIServiceWorkerManager.idl b/dom/interfaces/base/nsIServiceWorkerManager.idl
index d89da1ac9c..05614c74c3 100644
--- a/dom/interfaces/base/nsIServiceWorkerManager.idl
+++ b/dom/interfaces/base/nsIServiceWorkerManager.idl
@@ -31,7 +31,7 @@ interface nsIServiceWorkerUnregisterCallback : nsISupports
{
// aState is true if the unregistration succeded.
// It's false if this ServiceWorkerRegistration doesn't exist.
- void unregisterSucceeded(in bool aState);
+ void unregisterSucceeded(in boolean aState);
void unregisterFailed();
};
@@ -61,7 +61,7 @@ interface nsIServiceWorkerInfo : nsISupports
// Return whether the ServiceWorker has a "fetch" event listener. Throws if
// this is unknown because the worker's main script hasn't finished executing
// (when exposed as evaluatingWorker).
- readonly attribute bool handlesFetchEvents;
+ readonly attribute boolean handlesFetchEvents;
readonly attribute PRTime installedTime;
readonly attribute PRTime activatedTime;
@@ -250,8 +250,8 @@ interface nsIServiceWorkerManager : nsISupports
nsIServiceWorkerRegistrationInfo getRegistrationByPrincipal(in nsIPrincipal aPrincipal,
in AString aScope);
- [notxpcom, nostdcall] bool StartControlling(in const_ClientInfoRef aClientInfo,
- in const_ServiceWorkerDescriptorRef aServiceWorker);
+ [notxpcom, nostdcall] boolean StartControlling(in const_ClientInfoRef aClientInfo,
+ in const_ServiceWorkerDescriptorRef aServiceWorker);
// Testing
AString getScopeForUrl(in nsIPrincipal aPrincipal, in AString aPath);