Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_database.h |
| diff --git a/content/browser/indexed_db/indexed_db_database.h b/content/browser/indexed_db/indexed_db_database.h |
| index 72d65ce723e985a331cdd2c3e286af32d2ade7c3..17bbdd1d136c15be9b92eaf80546b53c28ce5841 100644 |
| --- a/content/browser/indexed_db/indexed_db_database.h |
| +++ b/content/browser/indexed_db/indexed_db_database.h |
| @@ -124,6 +124,10 @@ class CONTENT_EXPORT IndexedDBDatabase |
| // Called by transactions to report failure committing to the backing store. |
| void TransactionCommitFailed(const leveldb::Status& status); |
| + void AddPendingObserver(int64_t transaction_id, int64_t observer_id); |
|
Marijn Kruisselbrink
2016/06/28 18:58:31
Should observer_id here be int32_t rather than int
palakj1
2016/06/29 23:02:40
Sorry. Corrected.
|
| + void RemovePendingObservers(IndexedDBConnection*, |
| + const std::vector<int32_t>& pending_observer_ids); |
| + |
| void Get(int64_t transaction_id, |
| int64_t object_store_id, |
| int64_t index_id, |