| Index: third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| index 2cc605b92be177cc53feff78606da72fe3ffb058..1d85e248bd43e8f61823311742aeb17ae841dda4 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| @@ -54,7 +54,7 @@ TEST(IDBRequestTest, EventsAfterStopping) {
|
| V8TestingScope scope;
|
| IDBTransaction* transaction = nullptr;
|
| IDBRequest* request = IDBRequest::Create(
|
| - scope.GetScriptState(), IDBAny::CreateUndefined(), transaction);
|
| + scope.GetScriptState(), IDBAny::CreateUndefined(), transaction, nullptr);
|
| EXPECT_EQ(request->readyState(), "pending");
|
| scope.GetExecutionContext()->NotifyContextDestroyed();
|
|
|
| @@ -76,7 +76,7 @@ TEST(IDBRequestTest, AbortErrorAfterAbort) {
|
| V8TestingScope scope;
|
| IDBTransaction* transaction = nullptr;
|
| IDBRequest* request = IDBRequest::Create(
|
| - scope.GetScriptState(), IDBAny::CreateUndefined(), transaction);
|
| + scope.GetScriptState(), IDBAny::CreateUndefined(), transaction, nullptr);
|
| EXPECT_EQ(request->readyState(), "pending");
|
|
|
| // Simulate the IDBTransaction having received OnAbort from back end and
|
|
|