Index: third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h |
diff --git a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..82970eec6a6f19922cd56bc1de1eceee31effd6a |
--- /dev/null |
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h |
@@ -0,0 +1,23 @@ |
+// 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. |
+ |
+#ifndef WebIDBObservation_h |
+#define WebIDBObservation_h |
+ |
+#include "public/platform/modules/indexeddb/WebIDBKeyRange.h" |
+#include "public/platform/modules/indexeddb/WebIDBTypes.h" |
+#include "public/platform/modules/indexeddb/WebIDBValue.h" |
+ |
+namespace blink { |
+ |
+struct WebIDBObservation { |
+ int64_t objectStoreId; |
+ WebIDBOperationType type; |
+ WebIDBKeyRange keyRange; |
+ WebIDBValue value; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // WebIDBObservation_h |