blob: c25bbf57d3d18aa5c09d9757745fbe7d38f457b3 [file] [log] [blame]
// Copyright 2016 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://github.com/WICG/indexed-db-observers/blob/gh-pages/EXPLAINER.md#records
enum IDBObservationType {
"add",
"put",
"delete",
"clear"
};
[
Exposed=(Window,Worker),
RuntimeEnabled=IDBObserver
]
interface IDBObservation {
readonly attribute IDBObservationType type;
// When the record is a "delete" type, this is an IDBKeyRange.
[CallWith=ScriptState] readonly attribute any key;
[CallWith=ScriptState] readonly attribute any value;
};