| 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..c41881371d3b15593d1f991df7f4ecceff7f268e 100644
|
| --- a/content/browser/indexed_db/indexed_db_database.cc
|
| +++ b/content/browser/indexed_db/indexed_db_database.cc
|
| @@ -28,7 +28,7 @@
|
| #include "content/common/indexed_db/indexed_db_key_range.h"
|
| #include "third_party/WebKit/public/platform/WebIDBDatabaseException.h"
|
| #include "third_party/leveldatabase/env_chromium.h"
|
| -#include "webkit/browser/blob/blob_data_handle.h"
|
| +#include "storage/browser/blob/blob_data_handle.h"
|
|
|
| using base::ASCIIToUTF16;
|
| using base::Int64ToString16;
|
| @@ -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,
|
|
|