1 // Copyright 2023 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "net/http/http_stream.h" 6 7 namespace net { 8 GetQuicErrorCode() const9absl::optional<quic::QuicErrorCode> HttpStream::GetQuicErrorCode() const { 10 return absl::nullopt; 11 } 12 13 absl::optional<quic::QuicRstStreamErrorCode> GetQuicRstStreamErrorCode() const14HttpStream::GetQuicRstStreamErrorCode() const { 15 return absl::nullopt; 16 } 17 18 } // namespace net 19