| 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 1c4030cb6521e26429a539ecca0335cbbfb0b701..7834ae90ae2227eeb0bdd739aabbe60738cc3f0b 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
|
| @@ -249,7 +249,7 @@
|
| {
|
| ScriptValue onReject;
|
| promise.then(UnreachableFunction::create(scriptState()), TestFunction::create(scriptState(), &onReject));
|
| - v8::MicrotasksScope::PerformCheckpoint(isolate());
|
| + isolate()->RunMicrotasks();
|
| return onReject;
|
| }
|
|
|
| @@ -263,7 +263,7 @@
|
| {
|
| ScriptValue onResolve;
|
| promise.then(TestFunction::create(scriptState(), &onResolve), UnreachableFunction::create(scriptState()));
|
| - v8::MicrotasksScope::PerformCheckpoint(isolate());
|
| + isolate()->RunMicrotasks();
|
| return onResolve;
|
| }
|
|
|
|
|