#ifndef QUICHE_HTTP2_ADAPTER_DATA_SOURCE_H_ #define QUICHE_HTTP2_ADAPTER_DATA_SOURCE_H_ #include <cstdint> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_export.h" namespace http2 { namespace adapter { // Represents a source of DATA frames for transmission to the peer. class QUICHE_EXPORT DataFrameSource { … }; // Represents a source of metadata frames for transmission to the peer. class QUICHE_EXPORT MetadataSource { … }; } // namespace adapter } // namespace http2 #endif // QUICHE_HTTP2_ADAPTER_DATA_SOURCE_H_