| Index: content/child/indexed_db/indexed_db_dispatcher_unittest.cc
|
| diff --git a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
|
| index 61f3b0e6e3903b04898d2c7701d8655fe048da6d..a811bb1c8f6d5132ffdef5afd6fd24c19a6f227b 100644
|
| --- a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
|
| +++ b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
|
| @@ -10,9 +10,11 @@
|
| #include "content/common/indexed_db/indexed_db_key.h"
|
| #include "ipc/ipc_sync_message_filter.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "third_party/WebKit/public/platform/WebBlobInfo.h"
|
| #include "third_party/WebKit/public/platform/WebData.h"
|
| #include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
|
|
|
| +using blink::WebBlobInfo;
|
| using blink::WebData;
|
| using blink::WebIDBCallbacks;
|
| using blink::WebIDBDatabase;
|
| @@ -42,6 +44,7 @@ class MockCallbacks : public WebIDBCallbacks {
|
| TEST(IndexedDBDispatcherTest, ValueSizeTest) {
|
| const std::vector<char> data(kMaxIDBValueSizeInBytes + 1);
|
| const WebData value(&data.front(), data.size());
|
| + const WebVector<WebBlobInfo> webBlobInfo;
|
| const int32 ipc_dummy_id = -1;
|
| const int64 transaction_id = 1;
|
| const int64 object_store_id = 2;
|
| @@ -60,6 +63,7 @@ TEST(IndexedDBDispatcherTest, ValueSizeTest) {
|
| transaction_id,
|
| object_store_id,
|
| value,
|
| + webBlobInfo,
|
| key,
|
| WebIDBDatabase::AddOrUpdate,
|
| &callbacks,
|
|
|