From a86323dc647d9689af5ff0838b20b440d0abb986 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sun, 21 May 2017 19:39:52 +0200 Subject: async_hooks: implement C++ embedder API PR-URL: https://github.com/nodejs/node/pull/13142 Reviewed-By: Matthew Loring Reviewed-By: Andreas Madsen Reviewed-By: Daniel Bevenius --- src/node_internals.h | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/node_internals.h') diff --git a/src/node_internals.h b/src/node_internals.h index e07cb9d6d3..a08ab45aff 100644 --- a/src/node_internals.h +++ b/src/node_internals.h @@ -94,27 +94,6 @@ inline v8::Local PersistentToLocal( v8::Isolate* isolate, const v8::Persistent& persistent); -// Call with valid HandleScope and while inside Context scope. -v8::Local MakeCallback(Environment* env, - v8::Local recv, - const char* method, - int argc = 0, - v8::Local* argv = nullptr); - -// Call with valid HandleScope and while inside Context scope. -v8::Local MakeCallback(Environment* env, - v8::Local recv, - v8::Local symbol, - int argc = 0, - v8::Local* argv = nullptr); - -// Call with valid HandleScope and while inside Context scope. -v8::Local MakeCallback(Environment* env, - v8::Local recv, - v8::Local callback, - int argc = 0, - v8::Local* argv = nullptr); - // Convert a struct sockaddr to a { address: '1.2.3.4', port: 1234 } JS object. // Sets address and port properties on the info object and returns it. // If |info| is omitted, a new object is returned. -- cgit v1.2.3