2018-10-15 15:26:47 +00:00
|
|
|
|
|
|
|
// Copyright (c) 2018 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/microtasks_runner.h"
|
2020-06-17 17:08:10 +00:00
|
|
|
|
|
|
|
#include "shell/browser/electron_browser_main_parts.h"
|
|
|
|
#include "shell/browser/javascript_environment.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2018-10-15 15:26:47 +00:00
|
|
|
#include "v8/include/v8.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
MicrotasksRunner::MicrotasksRunner(v8::Isolate* isolate) : isolate_(isolate) {}
|
|
|
|
|
2019-12-11 00:22:35 +00:00
|
|
|
void MicrotasksRunner::WillProcessTask(const base::PendingTask& pending_task,
|
|
|
|
bool was_blocked_or_low_priority) {}
|
2018-10-15 15:26:47 +00:00
|
|
|
|
|
|
|
void MicrotasksRunner::DidProcessTask(const base::PendingTask& pending_task) {
|
|
|
|
v8::Isolate::Scope scope(isolate_);
|
2020-06-17 17:08:10 +00:00
|
|
|
// In the browser process we follow Node.js microtask policy of kExplicit
|
|
|
|
// and let the MicrotaskRunner which is a task observer for chromium UI thread
|
2020-10-13 17:25:21 +00:00
|
|
|
// scheduler run the microtask checkpoint. This worked fine because Node.js
|
2020-06-17 17:08:10 +00:00
|
|
|
// also runs microtasks through its task queue, but after
|
|
|
|
// https://github.com/electron/electron/issues/20013 Node.js now performs its
|
|
|
|
// own microtask checkpoint and it may happen is some situations that there is
|
|
|
|
// contention for performing checkpoint between Node.js and chromium, ending
|
|
|
|
// up Node.js dealying its callbacks. To fix this, now we always lets Node.js
|
|
|
|
// handle the checkpoint in the browser process.
|
|
|
|
{
|
2020-06-17 22:57:12 +00:00
|
|
|
v8::HandleScope scope(isolate_);
|
2020-12-15 19:39:25 +00:00
|
|
|
node::CallbackScope microtasks_scope(isolate_, v8::Object::New(isolate_),
|
|
|
|
{0, 0});
|
2020-06-17 17:08:10 +00:00
|
|
|
}
|
2018-10-15 15:26:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|