diff options
author | James M Snell <jasnell@gmail.com> | 2018-07-30 01:34:51 -0700 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2018-08-09 07:30:58 -0700 |
commit | 9f5cc1fc92918c387ec007944b5a53566b428adb (patch) | |
tree | 7ff22466b182f20bd9d2981f25435d43b85ff91a /src/node_perf.cc | |
parent | 4253e5583bf4b50ef0b3b2776581d8ca8d8bcd1d (diff) | |
download | node-new-9f5cc1fc92918c387ec007944b5a53566b428adb.tar.gz |
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.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_perf.cc b/src/node_perf.cc index a1ca57e2d5..5a50223ed5 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) |