| Index: content/child/indexed_db/webidbdatabase_impl.cc
|
| diff --git a/content/child/indexed_db/webidbdatabase_impl.cc b/content/child/indexed_db/webidbdatabase_impl.cc
|
| index 22e2aab898e7ef984e441f2321f2c3f4b3241f82..459a6fd08be7028f2125ca5e46bf6f04b860f1ec 100644
|
| --- a/content/child/indexed_db/webidbdatabase_impl.cc
|
| +++ b/content/child/indexed_db/webidbdatabase_impl.cc
|
| @@ -261,4 +261,12 @@ void WebIDBDatabaseImpl::commit(long long transaction_id) {
|
| new IndexedDBHostMsg_DatabaseCommit(ipc_database_id_, transaction_id));
|
| }
|
|
|
| +void WebIDBDatabaseImpl::ackReceivedBlobs(const WebVector<WebString>& uuids) {
|
| + DCHECK(uuids.size());
|
| + std::vector<std::string> param(uuids.size());
|
| + for (size_t i = 0; i < uuids.size(); ++i)
|
| + param[i] = uuids[i].latin1().data();
|
| + thread_safe_sender_->Send(new IndexedDBHostMsg_AckReceivedBlobs(param));
|
| +}
|
| +
|
| } // namespace content
|
|
|