| Index: content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| index f1663a5dc6b57e552e03365b929a9f7588911214..59420c6c740a1e970382ad411c1dc38d2e58bdca 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| @@ -53,6 +53,18 @@ void IndexedDBDispatcherHost::AddBinding(
|
| bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
| +void IndexedDBDispatcherHost::AddDatabaseBinding(
|
| + std::unique_ptr<::indexed_db::mojom::Database> database,
|
| + ::indexed_db::mojom::DatabaseAssociatedRequest request) {
|
| + database_bindings_.AddBinding(std::move(database), std::move(request));
|
| +}
|
| +
|
| +void IndexedDBDispatcherHost::AddCursorBinding(
|
| + std::unique_ptr<::indexed_db::mojom::Cursor> cursor,
|
| + ::indexed_db::mojom::CursorAssociatedRequest request) {
|
| + cursor_bindings_.AddBinding(std::move(cursor), std::move(request));
|
| +}
|
| +
|
| std::string IndexedDBDispatcherHost::HoldBlobData(
|
| const IndexedDBBlobInfo& blob_info) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
|