| Index: content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.h b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| index ba7a65fe36a28ac86dabe84b51889b2aa7d1e551..524c68eeb8029c3fb94755b1598a6ed85219f9dc 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| @@ -174,6 +174,12 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| void OnVersionChangeIgnored(int32_t ipc_database_id);
|
| void OnDestroyed(int32_t ipc_database_id);
|
|
|
| + void OnObserve(int32_t ipc_database_id,
|
| + int64_t transaction_id,
|
| + int32_t observer_id);
|
| + void OnUnobserve(int32_t ipc_database_id,
|
| + const std::vector<int32_t>& observer_ids_to_remove);
|
| +
|
| void OnGet(const IndexedDBHostMsg_DatabaseGet_Params& params);
|
| void OnGetAll(const IndexedDBHostMsg_DatabaseGetAll_Params& params);
|
| // OnPutWrapper starts on the IO thread so that it can grab BlobDataHandles
|
|
|