| 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..111ab00caa459a2253b6838fed7ada61bfd2b8f8 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| @@ -104,7 +104,8 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| friend class base::DeleteHelper<IndexedDBDispatcherHost>;
|
|
|
| // Used in nested classes.
|
| - typedef std::map<std::string, std::pair<storage::BlobDataHandle*, int>>
|
| + typedef std::map<std::string,
|
| + std::pair<storage::BlobDataSnapshotHandle*, int>>
|
| BlobDataHandleMap;
|
| typedef std::map<int64, int64> TransactionIDToDatabaseIDMap;
|
| typedef std::map<int64, uint64> TransactionIDToSizeMap;
|
| @@ -167,7 +168,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
| // before posting to the IDB TaskRunner for the rest of the job.
|
| void OnPutWrapper(const IndexedDBHostMsg_DatabasePut_Params& params);
|
| void OnPut(const IndexedDBHostMsg_DatabasePut_Params& params,
|
| - std::vector<storage::BlobDataHandle*> handles);
|
| + std::vector<storage::BlobDataSnapshotHandle*> handles);
|
| void OnSetIndexKeys(
|
| const IndexedDBHostMsg_DatabaseSetIndexKeys_Params& params);
|
| void OnSetIndexesReady(int32 ipc_database_id,
|
| @@ -259,7 +260,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
|
|
| void OnAckReceivedBlobs(const std::vector<std::string>& uuids);
|
| void OnPutHelper(const IndexedDBHostMsg_DatabasePut_Params& params,
|
| - std::vector<storage::BlobDataHandle*> handles);
|
| + std::vector<storage::BlobDataSnapshotHandle*> handles);
|
|
|
| void ResetDispatcherHosts();
|
| void DropBlobData(const std::string& uuid);
|
|
|