Index: content/common/indexed_db/indexed_db.mojom |
diff --git a/content/common/indexed_db/indexed_db.mojom b/content/common/indexed_db/indexed_db.mojom |
index 89f3bdac31dd8c29889d2bfb85dde7f6f69c9e0b..60d02d97b9a5311095a1a3f31f009a5b6f2af0c5 100644 |
--- a/content/common/indexed_db/indexed_db.mojom |
+++ b/content/common/indexed_db/indexed_db.mojom |
@@ -148,10 +148,17 @@ struct Observation { |
int64 object_store_id; |
OperationType type; |
KeyRange key_range; |
+ Value? value; |
+}; |
+ |
+struct ObserverTransaction { |
+ int64 id; |
+ array<int64> scope; |
}; |
struct ObserverChanges { |
map<int32, array<int32>> observation_index_map; |
+ map<int32, ObserverTransaction> transaction_map; |
array<Observation> observations; |
}; |