| Index: third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| index fcd57501e658574af61598ce4350c8834b610dde..df86cda6cf49fd95e6d05aadb73429eb47b1b432 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| @@ -249,7 +249,7 @@ public:
|
| {
|
| ScriptValue onReject;
|
| promise.then(UnreachableFunction::create(getScriptState()), TestFunction::create(getScriptState(), &onReject));
|
| - v8::MicrotasksScope::PerformCheckpoint(isolate());
|
| + isolate()->RunMicrotasks();
|
| return onReject;
|
| }
|
|
|
| @@ -263,7 +263,7 @@ public:
|
| {
|
| ScriptValue onResolve;
|
| promise.then(TestFunction::create(getScriptState(), &onResolve), UnreachableFunction::create(getScriptState()));
|
| - v8::MicrotasksScope::PerformCheckpoint(isolate());
|
| + isolate()->RunMicrotasks();
|
| return onResolve;
|
| }
|
|
|
|
|