Project import generated by Copybara. NOKEYCHECK=True PiperOrigin-RevId: 349477947 Change-Id: I029a0caf5dd6e087d094c0c4a99399769847c978
diff --git a/http2/hpack/decoder/hpack_block_collector.cc b/http2/hpack/decoder/hpack_block_collector.cc index 88e0a9a..f77100a 100644 --- a/http2/hpack/decoder/hpack_block_collector.cc +++ b/http2/hpack/decoder/hpack_block_collector.cc
@@ -2,13 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.h" +#include "http2/hpack/decoder/hpack_block_collector.h" #include <algorithm> #include <memory> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" using ::testing::AssertionResult; using ::testing::AssertionSuccess;
diff --git a/http2/hpack/decoder/hpack_block_collector.h b/http2/hpack/decoder/hpack_block_collector.h index 55d9449..812c3db 100644 --- a/http2/hpack/decoder/hpack_block_collector.h +++ b/http2/hpack/decoder/hpack_block_collector.h
@@ -19,11 +19,11 @@ #include <vector> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" +#include "http2/hpack/decoder/hpack_entry_collector.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/test_tools/http2_random.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_block_decoder.cc b/http2/hpack/decoder/hpack_block_decoder.cc index 7715980..c609f27 100644 --- a/http2/hpack/decoder/hpack_block_decoder.cc +++ b/http2/hpack/decoder/hpack_block_decoder.cc
@@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h" +#include "http2/hpack/decoder/hpack_block_decoder.h" #include <cstdint> #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flags.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_flag_utils.h" +#include "http2/platform/api/http2_flags.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_block_decoder.h b/http2/hpack/decoder/hpack_block_decoder.h index 1e60af4..2f28c4e 100644 --- a/http2/hpack/decoder/hpack_block_decoder.h +++ b/http2/hpack/decoder/hpack_block_decoder.h
@@ -12,13 +12,13 @@ #include <string> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_entry_decoder.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/platform/api/http2_logging.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_block_decoder_test.cc b/http2/hpack/decoder/hpack_block_decoder_test.cc index e392ffa..1f2ff39 100644 --- a/http2/hpack/decoder/hpack_block_decoder_test.cc +++ b/http2/hpack/decoder/hpack_block_decoder_test.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h" +#include "http2/hpack/decoder/hpack_block_decoder.h" // Tests of HpackBlockDecoder. @@ -10,15 +10,15 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_block_collector.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_example.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/hpack/decoder/hpack_block_collector.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/hpack/tools/hpack_example.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/test_tools/http2_random.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionSuccess;
diff --git a/http2/hpack/decoder/hpack_decoder.cc b/http2/hpack/decoder/hpack_decoder.cc index 440b92c..d1552de 100644 --- a/http2/hpack/decoder/hpack_decoder.cc +++ b/http2/hpack/decoder/hpack_decoder.cc
@@ -2,13 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder.h" +#include "http2/hpack/decoder/hpack_decoder.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_estimate_memory_usage.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flags.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/decoder/decode_status.h" +#include "http2/platform/api/http2_estimate_memory_usage.h" +#include "http2/platform/api/http2_flag_utils.h" +#include "http2/platform/api/http2_flags.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoder.h b/http2/hpack/decoder/hpack_decoder.h index 0666c38..b5fdecd 100644 --- a/http2/hpack/decoder/hpack_decoder.h +++ b/http2/hpack/decoder/hpack_decoder.h
@@ -23,14 +23,14 @@ #include <cstdint> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/hpack/decoder/hpack_block_decoder.h" +#include "http2/hpack/decoder/hpack_decoder_listener.h" +#include "http2/hpack/decoder/hpack_decoder_state.h" +#include "http2/hpack/decoder/hpack_decoder_tables.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_whole_entry_buffer.h" +#include "common/platform/api/quiche_export.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_decoder_listener.cc b/http2/hpack/decoder/hpack_decoder_listener.cc index c2c8308..a665be8 100644 --- a/http2/hpack/decoder/hpack_decoder_listener.cc +++ b/http2/hpack/decoder/hpack_decoder_listener.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h" +#include "http2/hpack/decoder/hpack_decoder_listener.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoder_listener.h b/http2/hpack/decoder/hpack_decoder_listener.h index 9b67012..bbb0544 100644 --- a/http2/hpack/decoder/hpack_decoder_listener.h +++ b/http2/hpack/decoder/hpack_decoder_listener.h
@@ -9,9 +9,9 @@ #define QUICHE_HTTP2_HPACK_DECODER_HPACK_DECODER_LISTENER_H_ #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/hpack_string.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoder_state.cc b/http2/hpack/decoder/hpack_decoder_state.cc index eba3e66..6e234af 100644 --- a/http2/hpack/decoder/hpack_decoder_state.cc +++ b/http2/hpack/decoder/hpack_decoder_state.cc
@@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h" +#include "http2/hpack/decoder/hpack_decoder_state.h" -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" -#include "net/third_party/quiche/src/http2/http2_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_macros.h" +#include "http2/hpack/hpack_string.h" +#include "http2/http2_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_macros.h" namespace http2 { namespace {
diff --git a/http2/hpack/decoder/hpack_decoder_state.h b/http2/hpack/decoder/hpack_decoder_state.h index 6478a46..cb2ff6d 100644 --- a/http2/hpack/decoder/hpack_decoder_state.h +++ b/http2/hpack/decoder/hpack_decoder_state.h
@@ -17,13 +17,13 @@ #include <cstdint> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/decoder/hpack_decoder_listener.h" +#include "http2/hpack/decoder/hpack_decoder_string_buffer.h" +#include "http2/hpack/decoder/hpack_decoder_tables.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_whole_entry_listener.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_export.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_decoder_state_test.cc b/http2/hpack/decoder/hpack_decoder_state_test.cc index 3ceaea2..5001565 100644 --- a/http2/hpack/decoder/hpack_decoder_state_test.cc +++ b/http2/hpack/decoder/hpack_decoder_state_test.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h" +#include "http2/hpack/decoder/hpack_decoder_state.h" // Tests of HpackDecoderState. @@ -10,12 +10,12 @@ #include <vector> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/http2_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/hpack_string.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/http2_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult; using ::testing::AssertionSuccess;
diff --git a/http2/hpack/decoder/hpack_decoder_string_buffer.cc b/http2/hpack/decoder/hpack_decoder_string_buffer.cc index 2e476b0..3d31026 100644 --- a/http2/hpack/decoder/hpack_decoder_string_buffer.cc +++ b/http2/hpack/decoder/hpack_decoder_string_buffer.cc
@@ -2,13 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h" +#include "http2/hpack/decoder/hpack_decoder_string_buffer.h" #include <utility> -#include "net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_estimate_memory_usage.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_bug_tracker.h" +#include "http2/platform/api/http2_estimate_memory_usage.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoder_string_buffer.h b/http2/hpack/decoder/hpack_decoder_string_buffer.h index b11d50f..9397330 100644 --- a/http2/hpack/decoder/hpack_decoder_string_buffer.h +++ b/http2/hpack/decoder/hpack_decoder_string_buffer.h
@@ -15,8 +15,8 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/huffman/hpack_huffman_decoder.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc b/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc index 51747e7..6c6a977 100644 --- a/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc +++ b/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc
@@ -2,16 +2,16 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h" +#include "http2/hpack/decoder/hpack_decoder_string_buffer.h" // Tests of HpackDecoderStringBuffer. #include <initializer_list> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult; using ::testing::AssertionSuccess;
diff --git a/http2/hpack/decoder/hpack_decoder_tables.cc b/http2/hpack/decoder/hpack_decoder_tables.cc index 397c085..fa87b83 100644 --- a/http2/hpack/decoder/hpack_decoder_tables.cc +++ b/http2/hpack/decoder/hpack_decoder_tables.cc
@@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h" +#include "http2/hpack/decoder/hpack_decoder_tables.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/platform/api/http2_logging.h" namespace http2 { namespace { @@ -19,7 +19,7 @@ DCHECK_EQ(ptr->size(), static_cast<size_t>(index)); \ ptr->emplace_back(name, value) -#include "net/third_party/quiche/src/http2/hpack/hpack_static_table_entries.inc" +#include "http2/hpack/hpack_static_table_entries.inc" #undef STATIC_TABLE_ENTRY
diff --git a/http2/hpack/decoder/hpack_decoder_tables.h b/http2/hpack/decoder/hpack_decoder_tables.h index 8841bbf..5f56cf2 100644 --- a/http2/hpack/decoder/hpack_decoder_tables.h +++ b/http2/hpack/decoder/hpack_decoder_tables.h
@@ -21,10 +21,10 @@ #include <cstdint> #include <vector> -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" -#include "net/third_party/quiche/src/http2/http2_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_containers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/hpack_string.h" +#include "http2/http2_constants.h" +#include "http2/platform/api/http2_containers.h" +#include "common/platform/api/quiche_export.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_decoder_tables_test.cc b/http2/hpack/decoder/hpack_decoder_tables_test.cc index 610c74a..7978b7f 100644 --- a/http2/hpack/decoder/hpack_decoder_tables_test.cc +++ b/http2/hpack/decoder/hpack_decoder_tables_test.cc
@@ -2,19 +2,19 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h" +#include "http2/hpack/decoder/hpack_decoder_tables.h" #include <algorithm> #include <string> #include <tuple> #include <vector> -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" -#include "net/third_party/quiche/src/http2/tools/random_util.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/test_tools/http2_random.h" +#include "http2/tools/random_util.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult; using ::testing::AssertionSuccess; @@ -42,7 +42,7 @@ DCHECK_EQ(static_entries.size() + 1, static_cast<size_t>(index)); \ static_entries.push_back({name, value, index}); -#include "net/third_party/quiche/src/http2/hpack/hpack_static_table_entries.inc" +#include "http2/hpack/hpack_static_table_entries.inc" #undef STATIC_TABLE_ENTRY
diff --git a/http2/hpack/decoder/hpack_decoder_test.cc b/http2/hpack/decoder/hpack_decoder_test.cc index eb14276..dc6ab58 100644 --- a/http2/hpack/decoder/hpack_decoder_test.cc +++ b/http2/hpack/decoder/hpack_decoder_test.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder.h" +#include "http2/hpack/decoder/hpack_decoder.h" // Tests of HpackDecoder. @@ -11,20 +11,20 @@ #include <utility> #include <vector> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h" -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_example.h" -#include "net/third_party/quiche/src/http2/http2_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" -#include "net/third_party/quiche/src/http2/tools/random_util.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/hpack/decoder/hpack_decoder_listener.h" +#include "http2/hpack/decoder/hpack_decoder_state.h" +#include "http2/hpack/decoder/hpack_decoder_tables.h" +#include "http2/hpack/hpack_string.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/hpack/tools/hpack_example.h" +#include "http2/http2_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/test_tools/http2_random.h" +#include "http2/tools/random_util.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionFailure; using ::testing::AssertionResult;
diff --git a/http2/hpack/decoder/hpack_decoding_error.cc b/http2/hpack/decoder/hpack_decoding_error.cc index 4b106a9..24db30d 100644 --- a/http2/hpack/decoder/hpack_decoding_error.cc +++ b/http2/hpack/decoder/hpack_decoding_error.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_decoding_error.h b/http2/hpack/decoder/hpack_decoding_error.h index 3536b97..0b97087 100644 --- a/http2/hpack/decoder/hpack_decoding_error.h +++ b/http2/hpack/decoder/hpack_decoding_error.h
@@ -6,7 +6,7 @@ #define QUICHE_HTTP2_HPACK_DECODER_HPACK_DECODING_ERROR_H_ #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_collector.cc b/http2/hpack/decoder/hpack_entry_collector.cc index b393828..97abea2 100644 --- a/http2/hpack/decoder/hpack_entry_collector.cc +++ b/http2/hpack/decoder/hpack_entry_collector.cc
@@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.h" +#include "http2/hpack/decoder/hpack_entry_collector.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/decoder/hpack_string_collector.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult;
diff --git a/http2/hpack/decoder/hpack_entry_collector.h b/http2/hpack/decoder/hpack_entry_collector.h index e333789..cbce8df 100644 --- a/http2/hpack/decoder/hpack_entry_collector.h +++ b/http2/hpack/decoder/hpack_entry_collector.h
@@ -16,11 +16,11 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/hpack/decoder/hpack_string_collector.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_entry_decoder.cc b/http2/hpack/decoder/hpack_entry_decoder.cc index c97c855..3cafde8 100644 --- a/http2/hpack/decoder/hpack_entry_decoder.cc +++ b/http2/hpack/decoder/hpack_entry_decoder.cc
@@ -2,17 +2,17 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h" +#include "http2/hpack/decoder/hpack_entry_decoder.h" #include <stddef.h> #include <cstdint> -#include "net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flags.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_macros.h" +#include "http2/platform/api/http2_bug_tracker.h" +#include "http2/platform/api/http2_flag_utils.h" +#include "http2/platform/api/http2_flags.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_macros.h" namespace http2 { namespace {
diff --git a/http2/hpack/decoder/hpack_entry_decoder.h b/http2/hpack/decoder/hpack_entry_decoder.h index 3e77254..256e7c2 100644 --- a/http2/hpack/decoder/hpack_entry_decoder.h +++ b/http2/hpack/decoder/hpack_entry_decoder.h
@@ -12,15 +12,15 @@ #include <string> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/hpack/decoder/hpack_entry_type_decoder.h" +#include "http2/hpack/decoder/hpack_string_decoder.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/platform/api/http2_logging.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_decoder_listener.cc b/http2/hpack/decoder/hpack_entry_decoder_listener.cc index a0571c4..994ffb3 100644 --- a/http2/hpack/decoder/hpack_entry_decoder_listener.cc +++ b/http2/hpack/decoder/hpack_entry_decoder_listener.cc
@@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_decoder_listener.h b/http2/hpack/decoder/hpack_entry_decoder_listener.h index 8872552..062a003 100644 --- a/http2/hpack/decoder/hpack_entry_decoder_listener.h +++ b/http2/hpack/decoder/hpack_entry_decoder_listener.h
@@ -11,8 +11,8 @@ #include <stddef.h> -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_decoder_test.cc b/http2/hpack/decoder/hpack_entry_decoder_test.cc index 415511e..b885b18 100644 --- a/http2/hpack/decoder/hpack_entry_decoder_test.cc +++ b/http2/hpack/decoder/hpack_entry_decoder_test.cc
@@ -2,18 +2,18 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h" +#include "http2/hpack/decoder/hpack_entry_decoder.h" // Tests of HpackEntryDecoder. #include <cstdint> -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_collector.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/decoder/hpack_entry_collector.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/test_tools/http2_random.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult;
diff --git a/http2/hpack/decoder/hpack_entry_type_decoder.cc b/http2/hpack/decoder/hpack_entry_type_decoder.cc index f087176..1cfc23a 100644 --- a/http2/hpack/decoder/hpack_entry_type_decoder.cc +++ b/http2/hpack/decoder/hpack_entry_type_decoder.cc
@@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h" +#include "http2/hpack/decoder/hpack_entry_type_decoder.h" #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flags.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_bug_tracker.h" +#include "http2/platform/api/http2_flag_utils.h" +#include "http2/platform/api/http2_flags.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_type_decoder.h b/http2/hpack/decoder/hpack_entry_type_decoder.h index ff2e77e..dac0823 100644 --- a/http2/hpack/decoder/hpack_entry_type_decoder.h +++ b/http2/hpack/decoder/hpack_entry_type_decoder.h
@@ -13,12 +13,12 @@ #include <cstdint> #include <string> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/varint/hpack_varint_decoder.h" +#include "http2/platform/api/http2_logging.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_entry_type_decoder_test.cc b/http2/hpack/decoder/hpack_entry_type_decoder_test.cc index c5c7f52..c02988a 100644 --- a/http2/hpack/decoder/hpack_entry_type_decoder_test.cc +++ b/http2/hpack/decoder/hpack_entry_type_decoder_test.cc
@@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h" +#include "http2/hpack/decoder/hpack_entry_type_decoder.h" #include <vector> -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionFailure; using ::testing::AssertionResult;
diff --git a/http2/hpack/decoder/hpack_string_collector.cc b/http2/hpack/decoder/hpack_string_collector.cc index 8300d57..178096c 100644 --- a/http2/hpack/decoder/hpack_string_collector.cc +++ b/http2/hpack/decoder/hpack_string_collector.cc
@@ -2,16 +2,16 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h" +#include "http2/hpack/decoder/hpack_string_collector.h" #include <stddef.h> #include <iosfwd> #include <ostream> -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_string_collector.h b/http2/hpack/decoder/hpack_string_collector.h index 9ba65c4..3ec6560 100644 --- a/http2/hpack/decoder/hpack_string_collector.h +++ b/http2/hpack/decoder/hpack_string_collector.h
@@ -13,8 +13,8 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/decoder/hpack_string_decoder_listener.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_string_decoder.cc b/http2/hpack/decoder/hpack_string_decoder.cc index bc1e43b..90da300 100644 --- a/http2/hpack/decoder/hpack_string_decoder.cc +++ b/http2/hpack/decoder/hpack_string_decoder.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h" +#include "http2/hpack/decoder/hpack_string_decoder.h" #include "absl/strings/str_cat.h"
diff --git a/http2/hpack/decoder/hpack_string_decoder.h b/http2/hpack/decoder/hpack_string_decoder.h index a28783b..252ab04 100644 --- a/http2/hpack/decoder/hpack_string_decoder.h +++ b/http2/hpack/decoder/hpack_string_decoder.h
@@ -15,12 +15,12 @@ #include <cstdint> #include <string> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_macros.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/hpack/varint/hpack_varint_decoder.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_macros.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_string_decoder_listener.cc b/http2/hpack/decoder/hpack_string_decoder_listener.cc index 7a132e4..73db24f 100644 --- a/http2/hpack/decoder/hpack_string_decoder_listener.cc +++ b/http2/hpack/decoder/hpack_string_decoder_listener.cc
@@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h" +#include "http2/hpack/decoder/hpack_string_decoder_listener.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_logging.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_string_decoder_listener.h b/http2/hpack/decoder/hpack_string_decoder_listener.h index 6172d91..25b7eea 100644 --- a/http2/hpack/decoder/hpack_string_decoder_listener.h +++ b/http2/hpack/decoder/hpack_string_decoder_listener.h
@@ -12,7 +12,7 @@ #include <stddef.h> -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 { namespace test {
diff --git a/http2/hpack/decoder/hpack_string_decoder_test.cc b/http2/hpack/decoder/hpack_string_decoder_test.cc index bc6137c..0571f8d 100644 --- a/http2/hpack/decoder/hpack_string_decoder_test.cc +++ b/http2/hpack/decoder/hpack_string_decoder_test.cc
@@ -2,18 +2,18 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h" +#include "http2/hpack/decoder/hpack_string_decoder.h" // Tests of HpackStringDecoder. #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_collector.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/test_tools/http2_random.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/decoder/hpack_string_collector.h" +#include "http2/hpack/decoder/hpack_string_decoder_listener.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/test_tools/http2_random.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult;
diff --git a/http2/hpack/decoder/hpack_whole_entry_buffer.cc b/http2/hpack/decoder/hpack_whole_entry_buffer.cc index 9ace91f..e546e23 100644 --- a/http2/hpack/decoder/hpack_whole_entry_buffer.cc +++ b/http2/hpack/decoder/hpack_whole_entry_buffer.cc
@@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h" +#include "http2/hpack/decoder/hpack_whole_entry_buffer.h" #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_estimate_memory_usage.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_flags.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_macros.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_estimate_memory_usage.h" +#include "http2/platform/api/http2_flag_utils.h" +#include "http2/platform/api/http2_flags.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_macros.h" +#include "http2/platform/api/http2_string_utils.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_whole_entry_buffer.h b/http2/hpack/decoder/hpack_whole_entry_buffer.h index f7b81c5..eb4edbe 100644 --- a/http2/hpack/decoder/hpack_whole_entry_buffer.h +++ b/http2/hpack/decoder/hpack_whole_entry_buffer.h
@@ -13,12 +13,12 @@ #include <stddef.h> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/decoder/hpack_decoder_string_buffer.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/decoder/hpack_entry_decoder_listener.h" +#include "http2/hpack/decoder/hpack_whole_entry_listener.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc b/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc index c3a005a..6f41481 100644 --- a/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc +++ b/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc
@@ -2,13 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h" +#include "http2/hpack/decoder/hpack_whole_entry_buffer.h" // Tests of HpackWholeEntryBuffer: does it buffer correctly, and does it // detect Huffman decoding errors and oversize string errors? -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" using ::testing::_; using ::testing::AllOf;
diff --git a/http2/hpack/decoder/hpack_whole_entry_listener.cc b/http2/hpack/decoder/hpack_whole_entry_listener.cc index 5900b6d..5ef9c4f 100644 --- a/http2/hpack/decoder/hpack_whole_entry_listener.cc +++ b/http2/hpack/decoder/hpack_whole_entry_listener.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h" +#include "http2/hpack/decoder/hpack_whole_entry_listener.h" namespace http2 {
diff --git a/http2/hpack/decoder/hpack_whole_entry_listener.h b/http2/hpack/decoder/hpack_whole_entry_listener.h index 92135f9..3593af3 100644 --- a/http2/hpack/decoder/hpack_whole_entry_listener.h +++ b/http2/hpack/decoder/hpack_whole_entry_listener.h
@@ -12,10 +12,10 @@ #include <stddef.h> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h" -#include "net/third_party/quiche/src/http2/hpack/decoder/hpack_decoding_error.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/hpack/decoder/hpack_decoder_string_buffer.h" +#include "http2/hpack/decoder/hpack_decoding_error.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/hpack_string.cc b/http2/hpack/hpack_string.cc index 52da992..fb9691c 100644 --- a/http2/hpack/hpack_string.cc +++ b/http2/hpack/hpack_string.cc
@@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" +#include "http2/hpack/hpack_string.h" #include <utility> #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/hpack_string.h b/http2/hpack/hpack_string.h index 3af2348..7896046 100644 --- a/http2/hpack/hpack_string.h +++ b/http2/hpack/hpack_string.h
@@ -16,7 +16,7 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/hpack_string_test.cc b/http2/hpack/hpack_string_test.cc index ee24115..c8462e8 100644 --- a/http2/hpack/hpack_string_test.cc +++ b/http2/hpack/hpack_string_test.cc
@@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/hpack_string.h" +#include "http2/hpack/hpack_string.h" // Tests of HpackString. #include <utility> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionFailure; using ::testing::AssertionResult;
diff --git a/http2/hpack/http2_hpack_constants.cc b/http2/hpack/http2_hpack_constants.cc index 520aaea..e02ef9b 100644 --- a/http2/hpack/http2_hpack_constants.cc +++ b/http2/hpack/http2_hpack_constants.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/http2_hpack_constants.h" #include "absl/strings/str_cat.h"
diff --git a/http2/hpack/http2_hpack_constants.h b/http2/hpack/http2_hpack_constants.h index 6decc61..ba83ba3 100644 --- a/http2/hpack/http2_hpack_constants.h +++ b/http2/hpack/http2_hpack_constants.h
@@ -13,7 +13,7 @@ #include <ostream> #include <string> -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/http2_hpack_constants_test.cc b/http2/hpack/http2_hpack_constants_test.cc index d44072b..1c3dd10 100644 --- a/http2/hpack/http2_hpack_constants_test.cc +++ b/http2/hpack/http2_hpack_constants_test.cc
@@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" +#include "http2/hpack/http2_hpack_constants.h" #include <sstream> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_test_helpers.h" namespace http2 { namespace test {
diff --git a/http2/hpack/huffman/hpack_huffman_decoder.cc b/http2/hpack/huffman/hpack_huffman_decoder.cc index d21624c..868d4f0 100644 --- a/http2/hpack/huffman/hpack_huffman_decoder.cc +++ b/http2/hpack/huffman/hpack_huffman_decoder.cc
@@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h" +#include "http2/hpack/huffman/hpack_huffman_decoder.h" #include <bitset> #include <limits> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_logging.h" // Terminology: //
diff --git a/http2/hpack/huffman/hpack_huffman_decoder.h b/http2/hpack/huffman/hpack_huffman_decoder.h index fe312d8..8679823 100644 --- a/http2/hpack/huffman/hpack_huffman_decoder.h +++ b/http2/hpack/huffman/hpack_huffman_decoder.h
@@ -19,7 +19,7 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/huffman/hpack_huffman_decoder_test.cc b/http2/hpack/huffman/hpack_huffman_decoder_test.cc index 0ff3413..fa88038 100644 --- a/http2/hpack/huffman/hpack_huffman_decoder_test.cc +++ b/http2/hpack/huffman/hpack_huffman_decoder_test.cc
@@ -2,19 +2,19 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h" +#include "http2/hpack/huffman/hpack_huffman_decoder.h" // Tests of HpackHuffmanDecoder and HuffmanBitBuffer. #include <iostream> #include "absl/base/macros.h" -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_test_helpers.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult;
diff --git a/http2/hpack/huffman/hpack_huffman_encoder.cc b/http2/hpack/huffman/hpack_huffman_encoder.cc index c4492df..d568641 100644 --- a/http2/hpack/huffman/hpack_huffman_encoder.cc +++ b/http2/hpack/huffman/hpack_huffman_encoder.cc
@@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h" +#include "http2/hpack/huffman/hpack_huffman_encoder.h" -#include "net/third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/hpack/huffman/huffman_spec_tables.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/huffman/hpack_huffman_encoder.h b/http2/hpack/huffman/hpack_huffman_encoder.h index fb79fb1..a0ed861 100644 --- a/http2/hpack/huffman/hpack_huffman_encoder.h +++ b/http2/hpack/huffman/hpack_huffman_encoder.h
@@ -12,7 +12,7 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/huffman/hpack_huffman_encoder_test.cc b/http2/hpack/huffman/hpack_huffman_encoder_test.cc index c9743f5..666fe95 100644 --- a/http2/hpack/huffman/hpack_huffman_encoder_test.cc +++ b/http2/hpack/huffman/hpack_huffman_encoder_test.cc
@@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h" +#include "http2/hpack/huffman/hpack_huffman_encoder.h" #include "absl/base/macros.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_string_utils.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace {
diff --git a/http2/hpack/huffman/hpack_huffman_transcoder_test.cc b/http2/hpack/huffman/hpack_huffman_transcoder_test.cc index 087f374..bca12c5 100644 --- a/http2/hpack/huffman/hpack_huffman_transcoder_test.cc +++ b/http2/hpack/huffman/hpack_huffman_transcoder_test.cc
@@ -7,13 +7,13 @@ #include <stddef.h> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h" -#include "net/third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/hpack/huffman/hpack_huffman_decoder.h" +#include "http2/hpack/huffman/hpack_huffman_encoder.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionResult; using ::testing::AssertionSuccess;
diff --git a/http2/hpack/huffman/huffman_spec_tables.cc b/http2/hpack/huffman/huffman_spec_tables.cc index f93d9a5..a4e0d3c 100644 --- a/http2/hpack/huffman/huffman_spec_tables.cc +++ b/http2/hpack/huffman/huffman_spec_tables.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.h" +#include "http2/hpack/huffman/huffman_spec_tables.h" namespace http2 {
diff --git a/http2/hpack/tools/hpack_block_builder.cc b/http2/hpack/tools/hpack_block_builder.cc index fa0ec4d..8f85304 100644 --- a/http2/hpack/tools/hpack_block_builder.cc +++ b/http2/hpack/tools/hpack_block_builder.cc
@@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" +#include "http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/varint/hpack_varint_encoder.h" +#include "http2/platform/api/http2_bug_tracker.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/tools/hpack_block_builder.h b/http2/hpack/tools/hpack_block_builder.h index 46da803..31a6b53 100644 --- a/http2/hpack/tools/hpack_block_builder.h +++ b/http2/hpack/tools/hpack_block_builder.h
@@ -21,8 +21,8 @@ #include <string> #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/http2_hpack_constants.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/http2_hpack_constants.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/tools/hpack_block_builder_test.cc b/http2/hpack/tools/hpack_block_builder_test.cc index d162fba..d4eb3d7 100644 --- a/http2/hpack/tools/hpack_block_builder_test.cc +++ b/http2/hpack/tools/hpack_block_builder_test.cc
@@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" +#include "http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_string_utils.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/tools/hpack_example.cc b/http2/hpack/tools/hpack_example.cc index db62c41..9832fdc 100644 --- a/http2/hpack/tools/hpack_example.cc +++ b/http2/hpack/tools/hpack_example.cc
@@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_example.h" +#include "http2/hpack/tools/hpack_example.h" #include <ctype.h> #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_bug_tracker.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" namespace http2 { namespace test {
diff --git a/http2/hpack/varint/hpack_varint_decoder.cc b/http2/hpack/varint/hpack_varint_decoder.cc index bbd272d..705976c 100644 --- a/http2/hpack/varint/hpack_varint_decoder.cc +++ b/http2/hpack/varint/hpack_varint_decoder.cc
@@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h" +#include "http2/hpack/varint/hpack_varint_decoder.h" #include "absl/strings/str_cat.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_string_utils.h" namespace http2 {
diff --git a/http2/hpack/varint/hpack_varint_decoder.h b/http2/hpack/varint/hpack_varint_decoder.h index ea4ea78..4d6fb0c 100644 --- a/http2/hpack/varint/hpack_varint_decoder.h +++ b/http2/hpack/varint/hpack_varint_decoder.h
@@ -31,10 +31,10 @@ #include <limits> #include <string> -#include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" -#include "net/third_party/quiche/src/http2/decoder/decode_status.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "http2/decoder/decode_buffer.h" +#include "http2/decoder/decode_status.h" +#include "http2/platform/api/http2_logging.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/varint/hpack_varint_decoder_test.cc b/http2/hpack/varint/hpack_varint_decoder_test.cc index 7be2710..742d277 100644 --- a/http2/hpack/varint/hpack_varint_decoder_test.cc +++ b/http2/hpack/varint/hpack_varint_decoder_test.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h" +#include "http2/hpack/varint/hpack_varint_decoder.h" // Test HpackVarintDecoder against hardcoded data. @@ -10,10 +10,10 @@ #include "absl/base/macros.h" #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionFailure; using ::testing::AssertionSuccess;
diff --git a/http2/hpack/varint/hpack_varint_encoder.cc b/http2/hpack/varint/hpack_varint_encoder.cc index 11ebf6a..3e0e9eb 100644 --- a/http2/hpack/varint/hpack_varint_encoder.cc +++ b/http2/hpack/varint/hpack_varint_encoder.cc
@@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h" +#include "http2/hpack/varint/hpack_varint_encoder.h" #include <limits> -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_logging.h" namespace http2 {
diff --git a/http2/hpack/varint/hpack_varint_encoder.h b/http2/hpack/varint/hpack_varint_encoder.h index 8b1d80a..91eaa43 100644 --- a/http2/hpack/varint/hpack_varint_encoder.h +++ b/http2/hpack/varint/hpack_varint_encoder.h
@@ -9,7 +9,7 @@ #include <cstdint> #include <string> -#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" +#include "common/platform/api/quiche_export.h" namespace http2 {
diff --git a/http2/hpack/varint/hpack_varint_encoder_test.cc b/http2/hpack/varint/hpack_varint_encoder_test.cc index 979ffc5..cd1666b 100644 --- a/http2/hpack/varint/hpack_varint_encoder_test.cc +++ b/http2/hpack/varint/hpack_varint_encoder_test.cc
@@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h" +#include "http2/hpack/varint/hpack_varint_encoder.h" #include "absl/base/macros.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" +#include "http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "common/platform/api/quiche_test.h" namespace http2 { namespace test {
diff --git a/http2/hpack/varint/hpack_varint_round_trip_test.cc b/http2/hpack/varint/hpack_varint_round_trip_test.cc index b71564b..91abbba 100644 --- a/http2/hpack/varint/hpack_varint_round_trip_test.cc +++ b/http2/hpack/varint/hpack_varint_round_trip_test.cc
@@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "net/third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h" +#include "http2/hpack/varint/hpack_varint_decoder.h" // Test HpackVarintDecoder against data encoded via HpackBlockBuilder, // which uses HpackVarintEncoder under the hood. @@ -15,11 +15,11 @@ #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" -#include "net/third_party/quiche/src/http2/hpack/tools/hpack_block_builder.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_logging.h" -#include "net/third_party/quiche/src/http2/platform/api/http2_string_utils.h" -#include "net/third_party/quiche/src/http2/tools/random_decoder_test.h" -#include "net/third_party/quiche/src/common/platform/api/quiche_test.h" +#include "http2/hpack/tools/hpack_block_builder.h" +#include "http2/platform/api/http2_logging.h" +#include "http2/platform/api/http2_string_utils.h" +#include "http2/tools/random_decoder_test.h" +#include "common/platform/api/quiche_test.h" using ::testing::AssertionFailure; using ::testing::AssertionSuccess;