| Index: Source/web/IDBDatabaseBackendProxy.h
|
| diff --git a/Source/web/IDBDatabaseBackendProxy.h b/Source/web/IDBDatabaseBackendProxy.h
|
| index 745da6af5bf5afaca5605ade6f0dfe7ee8f15e5c..17de5a644ada1c3b402a4bcacce781d63e0d92e1 100644
|
| --- a/Source/web/IDBDatabaseBackendProxy.h
|
| +++ b/Source/web/IDBDatabaseBackendProxy.h
|
| @@ -49,7 +49,7 @@ public:
|
| virtual void abort(int64_t);
|
|
|
| virtual void get(int64_t transactionId, int64_t objectStoreId, int64_t indexId, PassRefPtr<WebCore::IDBKeyRange>, bool keyOnly, PassRefPtr<WebCore::IDBCallbacks>) OVERRIDE;
|
| - virtual void put(int64_t transactionId, int64_t objectStoreId, PassRefPtr<WebCore::SharedBuffer> value, PassRefPtr<WebCore::IDBKey>, PutMode, PassRefPtr<WebCore::IDBCallbacks>, const Vector<int64_t>& indexIds, const Vector<IndexKeys>&) OVERRIDE;
|
| + virtual void put(int64_t transactionId, int64_t objectStoreId, PassRefPtr<WebCore::SharedBuffer> value, const Vector<WebCore::BlobInfo>*, PassRefPtr<WebCore::IDBKey>, PutMode, PassRefPtr<WebCore::IDBCallbacks>, const Vector<int64_t>& indexIds, const Vector<IndexKeys>&) OVERRIDE;
|
| virtual void setIndexKeys(int64_t transactionId, int64_t objectStoreId, PassRefPtr<WebCore::IDBKey> prpPrimaryKey, const Vector<int64_t>& indexIds, const Vector<IndexKeys>&) OVERRIDE;
|
| virtual void setIndexesReady(int64_t transactionId, int64_t objectStoreId, const Vector<int64_t>& indexIds) OVERRIDE;
|
| virtual void openCursor(int64_t transactionId, int64_t objectStoreId, int64_t indexId, PassRefPtr<WebCore::IDBKeyRange>, WebCore::IndexedDB::CursorDirection, bool keyOnly, TaskType, PassRefPtr<WebCore::IDBCallbacks>) OVERRIDE;
|
|
|