Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClemens Backes <clemensb@chromium.org>2019-12-02 13:37:33 +0300
committerMatheus Marchini <mmarchini@netflix.com>2020-03-19 02:37:18 +0300
commit59eeb3b5b99f9adfad47160f29554900ef57d0a5 (patch)
tree0a3b5c192391e4793bff80a8901f17023c5a84c5 /src/node_platform.h
parent1cd235d1a0c2c68e134c35ac54d71ee01c080f89 (diff)
src: stop overriding deprecated V8 methods
These methods will be removed in V8 8.1, hence we need to stop overriding them. PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/node_platform.h')
-rw-r--r--src/node_platform.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/node_platform.h b/src/node_platform.h
index 79aad88b881..c217480ed1c 100644
--- a/src/node_platform.h
+++ b/src/node_platform.h
@@ -149,14 +149,6 @@ class NodePlatform : public MultiIsolatePlatform {
void CallOnWorkerThread(std::unique_ptr<v8::Task> task) override;
void CallDelayedOnWorkerThread(std::unique_ptr<v8::Task> task,
double delay_in_seconds) override;
- void CallOnForegroundThread(v8::Isolate* isolate, v8::Task* task) override {
- UNREACHABLE();
- }
- void CallDelayedOnForegroundThread(v8::Isolate* isolate,
- v8::Task* task,
- double delay_in_seconds) override {
- UNREACHABLE();
- }
bool IdleTasksEnabled(v8::Isolate* isolate) override;
double MonotonicallyIncreasingTime() override;
double CurrentClockTimeMillis() override;