Use quiche_export instead of http2_export. gfe-relnote: n/a, no functional change. PiperOrigin-RevId: 290798015 Change-Id: I9029951e8c4d25746c4074dbf1903a05747e3e0f
diff --git a/http2/hpack/huffman/hpack_huffman_decoder.h b/http2/hpack/huffman/hpack_huffman_decoder.h index 73c0162..229bb58 100644 --- a/http2/hpack/huffman/hpack_huffman_decoder.h +++ b/http2/hpack/huffman/hpack_huffman_decoder.h
@@ -18,7 +18,7 @@ #include <iosfwd> #include <string> -#include "net/third_party/quiche/src/http2/platform/api/http2_export.h" +#include "net/third_party/quiche/src/common/platform/api/quiche_export.h" #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h" namespace http2 { @@ -38,7 +38,7 @@ // HuffmanBitBuffer stores the leading edge of bits to be decoded. The high // order bit of accumulator_ is the next bit to be decoded. -class HTTP2_EXPORT_PRIVATE HuffmanBitBuffer { +class QUICHE_EXPORT_PRIVATE HuffmanBitBuffer { public: HuffmanBitBuffer(); @@ -85,7 +85,7 @@ return out << v.DebugString(); } -class HTTP2_EXPORT_PRIVATE HpackHuffmanDecoder { +class QUICHE_EXPORT_PRIVATE HpackHuffmanDecoder { public: HpackHuffmanDecoder(); ~HpackHuffmanDecoder();