| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -303,7 +303,6 @@ inline Environment::Environment(IsolateData* isolate_data, | |||
| 303 | 303 | #endif | |
| 304 | 304 | handle_cleanup_waiting_(0), | |
| 305 | 305 | http_parser_buffer_(nullptr), | |
| 306 | - http2_socket_buffer_(nullptr), | ||
| 307 | 306 | fs_stats_field_array_(nullptr), | |
| 308 | 307 | context_(context->GetIsolate(), context) { | |
| 309 | 308 | // We'll be creating new objects so make sure we've entered the context. | |
@@ -330,7 +329,6 @@ inline Environment::~Environment() { | |||
| 330 | 329 | delete[] heap_statistics_buffer_; | |
| 331 | 330 | delete[] heap_space_statistics_buffer_; | |
| 332 | 331 | delete[] http_parser_buffer_; | |
| 333 | - delete[] http2_socket_buffer_; | ||
| 334 | 332 | } | |
| 335 | 333 | ||
| 336 | 334 | inline v8::Isolate* Environment::isolate() const { | |
@@ -489,15 +487,6 @@ inline void Environment::set_fs_stats_field_array(double* fields) { | |||
| 489 | 487 | fs_stats_field_array_ = fields; | |
| 490 | 488 | } | |
| 491 | 489 | ||
| 492 | - inline char* Environment::http2_socket_buffer() const { | ||
| 493 | - return http2_socket_buffer_; | ||
| 494 | - } | ||
| 495 | - | ||
| 496 | - inline void Environment::set_http2_socket_buffer(char* buffer) { | ||
| 497 | - CHECK_EQ(http2_socket_buffer_, nullptr); // Should be set only once. | ||
| 498 | - http2_socket_buffer_ = buffer; | ||
| 499 | - } | ||
| 500 | - | ||
| 501 | 490 | inline IsolateData* Environment::isolate_data() const { | |
| 502 | 491 | return isolate_data_; | |
| 503 | 492 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -598,8 +598,6 @@ class Environment { | |||
| 598 | 598 | ||
| 599 | 599 | inline char* http_parser_buffer() const; | |
| 600 | 600 | inline void set_http_parser_buffer(char* buffer); | |
| 601 | - inline char* http2_socket_buffer() const; | ||
| 602 | - inline void set_http2_socket_buffer(char* buffer); | ||
| 603 | 601 | ||
| 604 | 602 | inline double* fs_stats_field_array() const; | |
| 605 | 603 | inline void set_fs_stats_field_array(double* fields); | |
@@ -707,7 +705,6 @@ class Environment { | |||
| 707 | 705 | double* heap_space_statistics_buffer_ = nullptr; | |
| 708 | 706 | ||
| 709 | 707 | char* http_parser_buffer_; | |
| 710 | - char* http2_socket_buffer_; | ||
| 711 | 708 | ||
| 712 | 709 | double* fs_stats_field_array_; | |
| 713 | 710 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments