Skip to content

Commit 44fd3a2

Browse files
juanarbolBethGriggs
authored andcommitted
src: remove already elevated Isolate namespce
PR-URL: #26294 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 416aa6e commit 44fd3a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/node_platform.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ size_t BackgroundTaskRunner::NumberOfAvailableBackgroundThreads() const {
217217
}
218218

219219
PerIsolatePlatformData::PerIsolatePlatformData(
220-
v8::Isolate* isolate, uv_loop_t* loop)
220+
Isolate* isolate, uv_loop_t* loop)
221221
: loop_(loop) {
222222
flush_tasks_ = new uv_async_t();
223223
CHECK_EQ(0, uv_async_init(loop, flush_tasks_, FlushTasks));
@@ -425,11 +425,11 @@ void NodePlatform::CallDelayedOnForegroundThread(Isolate* isolate,
425425
std::unique_ptr<Task>(task), delay_in_seconds);
426426
}
427427

428-
bool NodePlatform::FlushForegroundTasks(v8::Isolate* isolate) {
428+
bool NodePlatform::FlushForegroundTasks(Isolate* isolate) {
429429
return ForIsolate(isolate)->FlushForegroundTasksInternal();
430430
}
431431

432-
void NodePlatform::CancelPendingDelayedTasks(v8::Isolate* isolate) {
432+
void NodePlatform::CancelPendingDelayedTasks(Isolate* isolate) {
433433
ForIsolate(isolate)->CancelPendingDelayedTasks();
434434
}
435435

0 commit comments

Comments
 (0)