Index: content/browser/indexed_db/indexed_db_transaction.h |
diff --git a/content/browser/indexed_db/indexed_db_transaction.h b/content/browser/indexed_db/indexed_db_transaction.h |
index 8315eb28be750920476a089b77481161d597b68f..798e6bd8cda03ac188caa14a4524aa0a7bc78a96 100644 |
--- a/content/browser/indexed_db/indexed_db_transaction.h |
+++ b/content/browser/indexed_db/indexed_db_transaction.h |
@@ -23,6 +23,7 @@ |
#include "content/browser/indexed_db/indexed_db_database.h" |
#include "content/browser/indexed_db/indexed_db_database_error.h" |
#include "content/browser/indexed_db/indexed_db_observer.h" |
+#include "content/common/indexed_db/indexed_db.mojom.h" |
#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" |
namespace content { |
@@ -79,10 +80,9 @@ class CONTENT_EXPORT IndexedDBTransaction { |
// Adds observation for the connection. |
void AddObservation(int32_t connection_id, |
::indexed_db::mojom::ObservationPtr observation); |
- // Adds the last observation index to observer_id's list of recorded |
- // observation indices. |
- void RecordObserverForLastObservation(int32_t connection_id, |
- int32_t observer_id); |
+ |
+ ::indexed_db::mojom::ObserverChangesPtr* GetPendingChangesForConnection( |
+ int32_t connection_id); |
IndexedDBBackingStore::Transaction* BackingStoreTransaction() { |
return transaction_.get(); |