// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/http/test_upload_data_stream_not_allow_http1.h" #include "net/base/io_buffer.h" #include "net/base/net_errors.h" namespace net { bool UploadDataStreamNotAllowHTTP1::AllowHTTP1() const { … } int UploadDataStreamNotAllowHTTP1::InitInternal(const NetLogWithSource&) { … } int UploadDataStreamNotAllowHTTP1::ReadInternal(IOBuffer* buf, int buf_len) { … } void UploadDataStreamNotAllowHTTP1::ResetInternal() { … } } // namespace net