blob: 23e5dbd831abc7c62afca73ed7c81245fb0bb57f [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://storage.spec.whatwg.org/#storagemanager
// TODO(jsbell): Should have [SecureContext] on interface
[
Exposed=(Window,Worker),
RuntimeEnabled=DurableStorage
] interface StorageManager {
[CallWith=ScriptState, MeasureAs=DurableStoragePersisted] Promise<boolean> persisted();
[Exposed=Window, CallWith=ScriptState, MeasureAs=DurableStoragePersist] Promise<boolean> persist();
[RuntimeEnabled=StorageEstimate, CallWith=ScriptState, MeasureAs=DurableStorageEstimate] Promise<StorageEstimate> estimate();
};