| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ | 5 #ifndef NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ |
| 6 #define NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ | 6 #define NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 void SendvData(const std::vector<scoped_refptr<IOBuffer>>& buffers, | 51 void SendvData(const std::vector<scoped_refptr<IOBuffer>>& buffers, |
| 52 const std::vector<int>& lengths, | 52 const std::vector<int>& lengths, |
| 53 bool end_stream) override; | 53 bool end_stream) override; |
| 54 NextProto GetProtocol() const override; | 54 NextProto GetProtocol() const override; |
| 55 int64_t GetTotalReceivedBytes() const override; | 55 int64_t GetTotalReceivedBytes() const override; |
| 56 int64_t GetTotalSentBytes() const override; | 56 int64_t GetTotalSentBytes() const override; |
| 57 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override; | 57 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 // QuicChromiumClientStream::Delegate implementation: | 60 // QuicChromiumClientStream::Delegate implementation: |
| 61 void OnDataAvailable() override; | |
| 62 void OnTrailingHeadersAvailable(const SpdyHeaderBlock& headers, | 61 void OnTrailingHeadersAvailable(const SpdyHeaderBlock& headers, |
| 63 size_t frame_len) override; | 62 size_t frame_len) override; |
| 64 void OnClose() override; | 63 void OnClose() override; |
| 65 void OnError(int error) override; | 64 void OnError(int error) override; |
| 66 | 65 |
| 67 void OnStreamReady(int rv); | 66 void OnStreamReady(int rv); |
| 68 void OnSendDataComplete(int rv); | 67 void OnSendDataComplete(int rv); |
| 69 void OnReadInitialHeadersComplete(int rv); | 68 void OnReadInitialHeadersComplete(int rv); |
| 70 void OnReadDataComplete(int rv); | 69 void OnReadDataComplete(int rv); |
| 71 | 70 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 bool send_request_headers_automatically_; | 121 bool send_request_headers_automatically_; |
| 123 | 122 |
| 124 base::WeakPtrFactory<BidirectionalStreamQuicImpl> weak_factory_; | 123 base::WeakPtrFactory<BidirectionalStreamQuicImpl> weak_factory_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(BidirectionalStreamQuicImpl); | 125 DISALLOW_COPY_AND_ASSIGN(BidirectionalStreamQuicImpl); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace net | 128 } // namespace net |
| 130 | 129 |
| 131 #endif // NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ | 130 #endif // NET_QUIC_CHROMIUM_BIDIRECTIONAL_STREAM_QUIC_IMPL_H_ |
| OLD | NEW |