Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a438d25

Browse filesBrowse files
danbevMylesBorins
authored andcommitted
http2: rename http2_state class to Http2State
This commit renames the http2_state class to follow the guidelines in CPP_STYLE_GUIDE.md. PR-URL: #20423 Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent e67c08b commit a438d25
Copy full SHA for a438d25

File tree

Expand file treeCollapse file tree

4 files changed

+8
-8
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

4 files changed

+8
-8
lines changed
Open diff view settings
Collapse file

‎src/env-inl.h‎

Copy file name to clipboardExpand all lines: src/env-inl.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,12 +482,12 @@ inline void Environment::set_http_parser_buffer_in_use(bool in_use) {
482482
http_parser_buffer_in_use_ = in_use;
483483
}
484484

485-
inline http2::http2_state* Environment::http2_state() const {
485+
inline http2::Http2State* Environment::http2_state() const {
486486
return http2_state_.get();
487487
}
488488

489489
inline void Environment::set_http2_state(
490-
std::unique_ptr<http2::http2_state> buffer) {
490+
std::unique_ptr<http2::Http2State> buffer) {
491491
CHECK(!http2_state_); // Should be set only once.
492492
http2_state_ = std::move(buffer);
493493
}
Collapse file

‎src/env.h‎

Copy file name to clipboardExpand all lines: src/env.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -643,8 +643,8 @@ class Environment {
643643
inline bool http_parser_buffer_in_use() const;
644644
inline void set_http_parser_buffer_in_use(bool in_use);
645645

646-
inline http2::http2_state* http2_state() const;
647-
inline void set_http2_state(std::unique_ptr<http2::http2_state> state);
646+
inline http2::Http2State* http2_state() const;
647+
inline void set_http2_state(std::unique_ptr<http2::Http2State> state);
648648

649649
inline AliasedBuffer<double, v8::Float64Array>* fs_stats_field_array();
650650

@@ -831,7 +831,7 @@ class Environment {
831831

832832
char* http_parser_buffer_;
833833
bool http_parser_buffer_in_use_ = false;
834-
std::unique_ptr<http2::http2_state> http2_state_;
834+
std::unique_ptr<http2::Http2State> http2_state_;
835835

836836
AliasedBuffer<double, v8::Float64Array> fs_stats_field_array_;
837837

Collapse file

‎src/node_http2.cc‎

Copy file name to clipboardExpand all lines: src/node_http2.cc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2650,7 +2650,7 @@ void Initialize(Local<Object> target,
26502650
Isolate* isolate = env->isolate();
26512651
HandleScope scope(isolate);
26522652

2653-
std::unique_ptr<http2_state> state(new http2_state(isolate));
2653+
std::unique_ptr<Http2State> state(new Http2State(isolate));
26542654

26552655
#define SET_STATE_TYPEDARRAY(name, field) \
26562656
target->Set(context, \
Collapse file

‎src/node_http2_state.h‎

Copy file name to clipboardExpand all lines: src/node_http2_state.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)),

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.