summaryrefslogtreecommitdiff
path: root/src/node_perf.h
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-12-19 17:40:41 -0800
committerJames M Snell <jasnell@gmail.com>2018-01-02 08:56:30 -0800
commit231b1166cfec42e445613a59286fd7610c0d7481 (patch)
treee13aa1119a6fc0733a44687a598fb672a29435dd /src/node_perf.h
parent54062d30cf3550fdb6220fa580724b76da817f32 (diff)
downloadandroid-node-v8-231b1166cfec42e445613a59286fd7610c0d7481.tar.gz
android-node-v8-231b1166cfec42e445613a59286fd7610c0d7481.tar.bz2
android-node-v8-231b1166cfec42e445613a59286fd7610c0d7481.zip
http2: perf_hooks integration
Collect and report basic timing information about `Http2Session` and `Http2Stream` instances. PR-URL: https://github.com/nodejs/node/pull/17906 Refs: https://github.com/nodejs/node/issues/17746 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_perf.h')
-rw-r--r--src/node_perf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_perf.h b/src/node_perf.h
index e5655f54fe..f1b182b4e3 100644
--- a/src/node_perf.h
+++ b/src/node_perf.h
@@ -47,9 +47,9 @@ NODE_EXTERN inline void MarkPerformanceMilestone(
class PerformanceEntry {
public:
- static inline void Notify(Environment* env,
- PerformanceEntryType type,
- Local<Value> object);
+ static void Notify(Environment* env,
+ PerformanceEntryType type,
+ Local<Value> object);
static void New(const FunctionCallbackInfo<Value>& args);