summaryrefslogtreecommitdiffstats
path: root/dom/storage/PBackgroundSessionStorageService.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'dom/storage/PBackgroundSessionStorageService.ipdl')
-rw-r--r--dom/storage/PBackgroundSessionStorageService.ipdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/storage/PBackgroundSessionStorageService.ipdl b/dom/storage/PBackgroundSessionStorageService.ipdl
new file mode 100644
index 0000000000..ef6087f0c3
--- /dev/null
+++ b/dom/storage/PBackgroundSessionStorageService.ipdl
@@ -0,0 +1,22 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+include protocol PBackground;
+
+namespace mozilla {
+namespace dom {
+
+[ChildImpl="SessionStorageService"]
+protocol PBackgroundSessionStorageService
+{
+ manager PBackground;
+
+ parent:
+ async __delete__();
+
+ async ClearStoragesForOrigin(nsCString originAttrs, nsCString originKey);
+};
+
+} // namespace dom
+} // namespace mozilla