File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -417,12 +417,12 @@ inline void Environment::set_http_parser_buffer(char* buffer) {
417417 http_parser_buffer_ = buffer;
418418}
419419
420- inline http2::http2_state * Environment::http2_state () const {
420+ inline http2::Http2State * Environment::http2_state () const {
421421 return http2_state_.get ();
422422}
423423
424424inline void Environment::set_http2_state (
425- std::unique_ptr<http2::http2_state > buffer) {
425+ std::unique_ptr<http2::Http2State > buffer) {
426426 CHECK (!http2_state_); // Should be set only once.
427427 http2_state_ = std::move (buffer);
428428}
Original file line number Diff line number Diff line change @@ -616,8 +616,8 @@ class Environment {
616616 inline char * http_parser_buffer () const ;
617617 inline void set_http_parser_buffer (char * buffer);
618618
619- inline http2::http2_state * http2_state () const ;
620- inline void set_http2_state (std::unique_ptr<http2::http2_state > state);
619+ inline http2::Http2State * http2_state () const ;
620+ inline void set_http2_state (std::unique_ptr<http2::Http2State > state);
621621
622622 inline double * fs_stats_field_array () const ;
623623 inline void set_fs_stats_field_array (double * fields);
@@ -754,7 +754,7 @@ class Environment {
754754 double * heap_space_statistics_buffer_ = nullptr ;
755755
756756 char * http_parser_buffer_;
757- std::unique_ptr<http2::http2_state > http2_state_;
757+ std::unique_ptr<http2::Http2State > http2_state_;
758758
759759 double * fs_stats_field_array_;
760760
Original file line number Diff line number Diff line change @@ -2833,7 +2833,7 @@ void Initialize(Local<Object> target,
28332833 Isolate* isolate = env->isolate ();
28342834 HandleScope scope (isolate);
28352835
2836- std::unique_ptr<http2_state > state (new http2_state (isolate));
2836+ std::unique_ptr<Http2State > state (new Http2State (isolate));
28372837
28382838#define SET_STATE_TYPEDARRAY (name, field ) \
28392839 target->Set (context, \
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ namespace http2 {
8484 IDX_SESSION_STATS_COUNT
8585 };
8686
87- class http2_state {
87+ class Http2State {
8888 public:
89- explicit http2_state (v8::Isolate* isolate) :
89+ explicit Http2State (v8::Isolate* isolate) :
9090 root_buffer(
9191 isolate,
9292 sizeof (http2_state_internal)),
You can’t perform that action at this time.
0 commit comments