| Index: content/browser/indexed_db/indexed_db_database.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_database.cc b/content/browser/indexed_db/indexed_db_database.cc
|
| index 18265ce6c9af37242deb0427babc14ea19cb5fbe..c1db120b10484b66d42799cfbb014358b92866b8 100644
|
| --- a/content/browser/indexed_db/indexed_db_database.cc
|
| +++ b/content/browser/indexed_db/indexed_db_database.cc
|
| @@ -718,7 +718,7 @@ struct IndexedDBDatabase::PutOperationParams {
|
| PutOperationParams() {}
|
| int64 object_store_id;
|
| IndexedDBValue value;
|
| - ScopedVector<webkit_blob::BlobDataHandle> handles;
|
| + ScopedVector<storage::BlobDataHandle> handles;
|
| scoped_ptr<IndexedDBKey> key;
|
| blink::WebIDBPutMode put_mode;
|
| scoped_refptr<IndexedDBCallbacks> callbacks;
|
| @@ -731,7 +731,7 @@ struct IndexedDBDatabase::PutOperationParams {
|
| void IndexedDBDatabase::Put(int64 transaction_id,
|
| int64 object_store_id,
|
| IndexedDBValue* value,
|
| - ScopedVector<webkit_blob::BlobDataHandle>* handles,
|
| + ScopedVector<storage::BlobDataHandle>* handles,
|
| scoped_ptr<IndexedDBKey> key,
|
| blink::WebIDBPutMode put_mode,
|
| scoped_refptr<IndexedDBCallbacks> callbacks,
|
|
|