blob: 0fb919d3dc1a4b78870652a171c292bfa16c6388 [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)
] interface StorageManager {
[CallWith=ScriptState, MeasureAs=DurableStoragePersisted] Promise<boolean> persisted();
[Exposed=Window, CallWith=ScriptState, MeasureAs=DurableStoragePersist] Promise<boolean> persist();
[CallWith=ScriptState, MeasureAs=DurableStorageEstimate] Promise<StorageEstimate> estimate();
};