commit | 4aa411d953037cb2fdfafbd009aeaca7bfda8f05 | [log] [tgz] |
---|---|---|
author | Etienne Pierre-doray <etiennep@chromium.org> | Sat Aug 10 16:11:37 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Aug 19 18:35:30 2024 |
tree | 12f9df3919c9013b776776c075b6aeecb487b2c0 | |
parent | 403434550b351f9792e0be700c7b43ce47a9fdd0 [diff] |
[task] Override GetForegroundTaskRunner with priority This CL makes GetForegroundTaskRunner() with priority usable by providing a default implementation and overriding it in subclasses. This will be use in follow-up to change priority of incremental marking behind and experiment. Follow-up: Delete GetForegroundTaskRunner() with no priority once all embedders implement the version with priority. Bug: chromium:1448758 Change-Id: I98423ac25a3eb12210ad127983be1a86a611e37c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5758110 Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Reviewed-by: Omer Katz <omerkatz@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/main@{#95697}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*
Please follow the instructions mentioned at v8.dev/docs/contribute.