| 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..5ec808633b5cfce2896b8346d60aa3ba416e2530 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
|
| @@ -53,8 +53,9 @@ namespace {
|
| TEST(IDBRequestTest, EventsAfterStopping) {
|
| V8TestingScope scope;
|
| IDBTransaction* transaction = nullptr;
|
| - IDBRequest* request = IDBRequest::Create(
|
| - scope.GetScriptState(), IDBAny::CreateUndefined(), transaction);
|
| + IDBRequest* request =
|
| + IDBRequest::Create(scope.GetScriptState(), IDBAny::CreateUndefined(),
|
| + transaction, IDBRequest::AsyncTraceState());
|
| EXPECT_EQ(request->readyState(), "pending");
|
| scope.GetExecutionContext()->NotifyContextDestroyed();
|
|
|
| @@ -75,8 +76,9 @@ TEST(IDBRequestTest, EventsAfterStopping) {
|
| TEST(IDBRequestTest, AbortErrorAfterAbort) {
|
| V8TestingScope scope;
|
| IDBTransaction* transaction = nullptr;
|
| - IDBRequest* request = IDBRequest::Create(
|
| - scope.GetScriptState(), IDBAny::CreateUndefined(), transaction);
|
| + IDBRequest* request =
|
| + IDBRequest::Create(scope.GetScriptState(), IDBAny::CreateUndefined(),
|
| + transaction, IDBRequest::AsyncTraceState());
|
| EXPECT_EQ(request->readyState(), "pending");
|
|
|
| // Simulate the IDBTransaction having received OnAbort from back end and
|
|
|