Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2018-07-30 11:34:51 +0300
committerJames M Snell <jasnell@gmail.com>2018-08-09 17:30:58 +0300
commit9f5cc1fc92918c387ec007944b5a53566b428adb (patch)
tree7ff22466b182f20bd9d2981f25435d43b85ff91a /src/node_perf.cc
parent4253e5583bf4b50ef0b3b2776581d8ca8d8bcd1d (diff)
src: move process.binding('performance') to internalBinding
PR-URL: https://github.com/nodejs/node/pull/22029 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_perf.cc')
-rw-r--r--src/node_perf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_perf.cc b/src/node_perf.cc
index a1ca57e2d5c..5a50223ed59 100644
--- a/src/node_perf.cc
+++ b/src/node_perf.cc
@@ -454,4 +454,4 @@ void Initialize(Local<Object> target,
} // namespace performance
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(performance, node::performance::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(performance, node::performance::Initialize)