| Index: content/child/indexed_db/proxy_webidbdatabase_impl.cc
|
| diff --git a/content/child/indexed_db/proxy_webidbdatabase_impl.cc b/content/child/indexed_db/proxy_webidbdatabase_impl.cc
|
| index 1cf9778c275da84e7040ef0f84ca13ef91921595..c09f5f5aa09329b83079c706cea5f4b6351d4253 100644
|
| --- a/content/child/indexed_db/proxy_webidbdatabase_impl.cc
|
| +++ b/content/child/indexed_db/proxy_webidbdatabase_impl.cc
|
| @@ -10,12 +10,14 @@
|
| #include "content/child/indexed_db/indexed_db_dispatcher.h"
|
| #include "content/child/indexed_db/indexed_db_key_builders.h"
|
| #include "content/common/indexed_db/indexed_db_messages.h"
|
| +#include "third_party/WebKit/public/platform/WebBlobInfo.h"
|
| #include "third_party/WebKit/public/platform/WebIDBKeyPath.h"
|
| #include "third_party/WebKit/public/platform/WebIDBMetadata.h"
|
| #include "third_party/WebKit/public/platform/WebString.h"
|
| #include "third_party/WebKit/public/platform/WebVector.h"
|
| #include "webkit/child/worker_task_runner.h"
|
|
|
| +using WebKit::WebBlobInfo;
|
| using WebKit::WebIDBCallbacks;
|
| using WebKit::WebIDBDatabaseCallbacks;
|
| using WebKit::WebIDBMetadata;
|
| @@ -117,6 +119,7 @@ void RendererWebIDBDatabaseImpl::put(
|
| long long transaction_id,
|
| long long object_store_id,
|
| const WebKit::WebData& value,
|
| + const WebVector<WebBlobInfo>& webBlobInfo,
|
| const WebIDBKey& key,
|
| PutMode put_mode,
|
| WebIDBCallbacks* callbacks,
|
| @@ -128,6 +131,7 @@ void RendererWebIDBDatabaseImpl::put(
|
| transaction_id,
|
| object_store_id,
|
| value,
|
| + webBlobInfo,
|
| IndexedDBKeyBuilder::Build(key),
|
| put_mode,
|
| callbacks,
|
|
|