| 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 eb727d15222a63c328aa141fb306b1718791eb57..b576a460730fce263777c9583518e7718d91be01 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| @@ -26,6 +26,7 @@ struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params;
|
| struct IndexedDBHostMsg_DatabaseCreateTransaction_Params;
|
| struct IndexedDBHostMsg_DatabaseDeleteRange_Params;
|
| struct IndexedDBHostMsg_DatabaseGet_Params;
|
| +struct IndexedDBHostMsg_DatabaseGetAll_Params;
|
| struct IndexedDBHostMsg_DatabaseOpenCursor_Params;
|
| struct IndexedDBHostMsg_DatabasePut_Params;
|
| struct IndexedDBHostMsg_DatabaseSetIndexKeys_Params;
|
| @@ -163,6 +164,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| void OnDestroyed(int32 ipc_database_id);
|
|
|
| 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
|
| // before posting to the IDB TaskRunner for the rest of the job.
|
| void OnPutWrapper(const IndexedDBHostMsg_DatabasePut_Params& params);
|
|
|