Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cb2cbf2

Browse filesBrowse files
juanarbolBridgeAR
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 2438a43 commit cb2cbf2
Copy full SHA for cb2cbf2

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Collapse file

‎src/node_platform.cc‎

Copy file name to clipboardExpand all lines: src/node_platform.cc
+3-3Lines changed: 3 additions & 3 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.