summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl')
-rw-r--r--chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl16
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl b/chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl
deleted file mode 100644
index a56142de3f6..00000000000
--- a/chromium/third_party/blink/renderer/modules/indexeddb/idb_observer.idl
+++ /dev/null
@@ -1,16 +0,0 @@
-// 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/issues/24
-
-callback IDBObserverCallback = void (IDBObserverChanges changes);
-
-[
- Exposed=(Window,Worker),
- RuntimeEnabled=IDBObserver
-] interface IDBObserver {
- constructor(IDBObserverCallback callback);
- [RaisesException, Measure] void observe(IDBDatabase db, IDBTransaction tx, IDBObserverInit options);
- [RaisesException, Measure] void unobserve(IDBDatabase db);
-};