summaryrefslogtreecommitdiffstats
path: root/dom/interfaces/storage
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:42 +0000
commitda4c7e7ed675c3bf405668739c3012d140856109 (patch)
treecdd868dba063fecba609a1d819de271f0d51b23e /dom/interfaces/storage
parentAdding upstream version 125.0.3. (diff)
downloadfirefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz
firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/interfaces/storage')
-rw-r--r--dom/interfaces/storage/nsIDOMStorageManager.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/interfaces/storage/nsIDOMStorageManager.idl b/dom/interfaces/storage/nsIDOMStorageManager.idl
index 1be7525e4a..e3e3ed4659 100644
--- a/dom/interfaces/storage/nsIDOMStorageManager.idl
+++ b/dom/interfaces/storage/nsIDOMStorageManager.idl
@@ -61,7 +61,7 @@ interface nsIDOMStorageManager : nsISupports
in nsIPrincipal aPrincipal,
in nsIPrincipal aStoragePrincipal,
in AString aDocumentURI,
- [optional] in bool aPrivate);
+ [optional] in boolean aPrivate);
/**
* DEPRECATED. The only good reason to use this was if you were writing a
* test and wanted to hackily determine if a preload happened. That's now
@@ -85,7 +85,7 @@ interface nsIDOMStorageManager : nsISupports
Storage getStorage(in mozIDOMWindow aWindow,
in nsIPrincipal aPrincipal,
in nsIPrincipal aStoragePrincipal,
- [optional] in bool aPrivate);
+ [optional] in boolean aPrivate);
/**
* Clones given storage into this storage manager.
@@ -112,8 +112,8 @@ interface nsIDOMStorageManager : nsISupports
* by this storage manager.
* false otherwise
*/
- bool checkStorage(in nsIPrincipal aPrincipal,
- in Storage aStorage);
+ boolean checkStorage(in nsIPrincipal aPrincipal,
+ in Storage aStorage);
};
[uuid(b3bfbbd0-e738-4cbf-b0f0-b65f25265e82)]