1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/.
6 * The origin of this IDL file is
7 * https://storage.spec.whatwg.org/#storagemanager
11 [SecureContext, Exposed=(Window,Worker)]
12 interface StorageManager {
14 Promise<boolean> persisted();
16 [Exposed=Window, NewObject]
17 Promise<boolean> persist();
20 Promise<StorageEstimate> estimate();
23 dictionary StorageEstimate {
24 unsigned long long usage;
25 unsigned long long quota;
29 partial interface StorageManager {
30 [Pref="dom.fs.enabled", NewObject]
31 Promise<FileSystemDirectoryHandle> getDirectory();
35 * Testing methods that exist only for the benefit of automated glass-box
36 * testing. Will never be exposed to content at large and unlikely to be useful
37 * in a WebDriver context.
40 partial interface StorageManager {