Skip to content

Commit 1d97374

Browse files
juanarbolantsmartian
authored andcommitted
src: remove already elevated Isolate namespce
PR-URL: #26294 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent d16cfa4 commit 1d97374

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node_platform.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ int WorkerThreadsTaskRunner::NumberOfWorkerThreads() const {
223223
}
224224

225225
PerIsolatePlatformData::PerIsolatePlatformData(
226-
v8::Isolate* isolate, uv_loop_t* loop)
226+
Isolate* isolate, uv_loop_t* loop)
227227
: loop_(loop) {
228228
flush_tasks_ = new uv_async_t();
229229
CHECK_EQ(0, uv_async_init(loop, flush_tasks_, FlushTasks));
@@ -434,11 +434,11 @@ void NodePlatform::CallDelayedOnForegroundThread(Isolate* isolate,
434434
std::unique_ptr<Task>(task), delay_in_seconds);
435435
}
436436

437-
bool NodePlatform::FlushForegroundTasks(v8::Isolate* isolate) {
437+
bool NodePlatform::FlushForegroundTasks(Isolate* isolate) {
438438
return ForIsolate(isolate)->FlushForegroundTasksInternal();
439439
}
440440

441-
void NodePlatform::CancelPendingDelayedTasks(v8::Isolate* isolate) {
441+
void NodePlatform::CancelPendingDelayedTasks(Isolate* isolate) {
442442
ForIsolate(isolate)->CancelPendingDelayedTasks();
443443
}
444444

0 commit comments

Comments
 (0)