Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(987)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h

Issue 2601983002: [IndexedDB] Adding transaction and value support to observers (Closed)
Patch Set: Replying to comments, disallowed observing from versionchange txn Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h b/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
index b120c14d246ba12c56075e45f6838970cfe756b1..55892e3d3e63bc11e97efae3bfa10c15bab6e0cc 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabaseCallbacks.h
@@ -56,7 +56,10 @@ class MODULES_EXPORT IDBDatabaseCallbacks
virtual void onChanges(
const std::unordered_map<int32_t, std::vector<int32_t>>&
observation_index_map,
- const WebVector<WebIDBObservation>& observations);
+ const WebVector<WebIDBObservation>& observations,
+ const std::unordered_map<int32_t,
pwnall 2017/01/10 01:41:11 Can you alias this type to a meaningful name?
dmurph 2017/01/10 20:40:08 Done.
+ std::pair<int64_t, std::vector<int64_t>>>&
+ transactions);
void connect(IDBDatabase*);

Powered by Google App Engine
This is Rietveld 408576698