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>2020-03-16 23:59:36 +0300
committerMyles Borins <mylesborins@google.com>2020-03-24 09:55:11 +0300
commit1c4a112fccb7feb12473ee9f8680eaf143c97e82 (patch)
treea551c89031620796f225da16184847109dbc7fef /src/node_http2.cc
parent7904ecd245d2e00f2dc4ade2b64ca51a702df0d9 (diff)
src: clean up stream_base.h and stream-base-inl.h
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/32307 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'src/node_http2.cc')
-rw-r--r--src/node_http2.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/node_http2.cc b/src/node_http2.cc
index b8eaf9af8ab..e4b24b74341 100644
--- a/src/node_http2.cc
+++ b/src/node_http2.cc
@@ -9,27 +9,37 @@
#include "node_mem-inl.h"
#include "node_perf.h"
#include "node_revert.h"
+#include "stream_base-inl.h"
#include "util-inl.h"
#include <algorithm>
namespace node {
+using v8::Array;
using v8::ArrayBuffer;
using v8::ArrayBufferView;
using v8::Boolean;
using v8::Context;
using v8::Float64Array;
using v8::Function;
+using v8::FunctionCallbackInfo;
+using v8::FunctionTemplate;
+using v8::HandleScope;
using v8::Integer;
+using v8::Isolate;
+using v8::Local;
+using v8::MaybeLocal;
using v8::NewStringType;
using v8::Number;
+using v8::Object;
using v8::ObjectTemplate;
using v8::String;
using v8::Uint32;
using v8::Uint32Array;
using v8::Uint8Array;
using v8::Undefined;
+using v8::Value;
using node::performance::PerformanceEntry;
namespace http2 {