| Index: components/guest_view/renderer/guest_view_request.cc
|
| diff --git a/components/guest_view/renderer/guest_view_request.cc b/components/guest_view/renderer/guest_view_request.cc
|
| index 45edac41c10b009c4dca3f3489f7440bfce8b359..30b2eabc1dbec2fc5672213b3c1f88b2f86e8b03 100644
|
| --- a/components/guest_view/renderer/guest_view_request.cc
|
| +++ b/components/guest_view/renderer/guest_view_request.cc
|
| @@ -12,7 +12,6 @@
|
| #include "content/public/renderer/render_view.h"
|
| #include "third_party/WebKit/public/web/WebLocalFrame.h"
|
| #include "third_party/WebKit/public/web/WebRemoteFrame.h"
|
| -#include "third_party/WebKit/public/web/WebScopedMicrotaskSuppression.h"
|
| #include "third_party/WebKit/public/web/WebView.h"
|
|
|
| namespace guest_view {
|
| @@ -42,7 +41,8 @@ void GuestViewRequest::ExecuteCallbackIfAvailable(
|
| return;
|
|
|
| v8::Context::Scope context_scope(context);
|
| - blink::WebScopedMicrotaskSuppression suppression;
|
| + v8::MicrotasksScope microtasks(
|
| + isolate(), v8::MicrotasksScope::kDoNotRunMicrotasks);
|
|
|
| callback->Call(context->Global(), argc, argv.get());
|
| }
|
|
|