File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 100
100
// Forward-declare libuv loop
101
101
struct uv_loop_s ;
102
102
103
- // Forward-declare TracingController, used by CreatePlatform.
104
- namespace v8 {
105
- class TracingController ;
106
- }
107
-
108
103
// Forward-declare these functions now to stop MSVS from becoming
109
104
// terminally confused when it's done in node_internals.h
110
105
namespace node {
111
106
107
+ namespace tracing {
108
+
109
+ class TracingController ;
110
+
111
+ }
112
+
112
113
NODE_EXTERN v8::Local<v8::Value> ErrnoException (v8::Isolate* isolate,
113
114
int errorno,
114
115
const char * syscall = nullptr ,
@@ -275,7 +276,7 @@ NODE_EXTERN MultiIsolatePlatform* GetMainThreadMultiIsolatePlatform();
275
276
276
277
NODE_EXTERN MultiIsolatePlatform* CreatePlatform (
277
278
int thread_pool_size,
278
- v8 ::TracingController* tracing_controller);
279
+ node::tracing ::TracingController* tracing_controller);
279
280
MultiIsolatePlatform* InitializeV8Platform (int thread_pool_size);
280
281
NODE_EXTERN void FreePlatform (MultiIsolatePlatform* platform);
281
282
You can’t perform that action at this time.
0 commit comments