OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_QUIC_SPDY_SERVER_STREAM_H_ | 5 #ifndef NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
6 #define NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | 6 #define NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 // All this does right now is aggregate data, and on fin, send an HTTP | 25 // All this does right now is aggregate data, and on fin, send an HTTP |
26 // response. | 26 // response. |
27 class QuicSpdyServerStream : public QuicDataStream { | 27 class QuicSpdyServerStream : public QuicDataStream { |
28 public: | 28 public: |
29 QuicSpdyServerStream(QuicStreamId id, QuicSession* session); | 29 QuicSpdyServerStream(QuicStreamId id, QuicSession* session); |
30 virtual ~QuicSpdyServerStream(); | 30 virtual ~QuicSpdyServerStream(); |
31 | 31 |
32 // ReliableQuicStream implementation called by the session when there's | 32 // ReliableQuicStream implementation called by the session when there's |
33 // data for us. | 33 // data for us. |
34 virtual uint32 ProcessData(const char* data, uint32 data_len) OVERRIDE; | 34 virtual uint32 ProcessData(const char* data, uint32 data_len) override; |
35 virtual void OnFinRead() OVERRIDE; | 35 virtual void OnFinRead() override; |
36 | 36 |
37 void ParseRequestHeaders(); | 37 void ParseRequestHeaders(); |
38 | 38 |
39 private: | 39 private: |
40 friend class test::QuicSpdyServerStreamPeer; | 40 friend class test::QuicSpdyServerStreamPeer; |
41 | 41 |
42 // Sends a basic 200 response using SendHeaders for the headers and WriteData | 42 // Sends a basic 200 response using SendHeaders for the headers and WriteData |
43 // for the body. | 43 // for the body. |
44 void SendResponse(); | 44 void SendResponse(); |
45 | 45 |
(...skipping 11 matching lines...) Expand all Loading... |
57 // Buffer into which response header data is read. | 57 // Buffer into which response header data is read. |
58 scoped_refptr<GrowableIOBuffer> read_buf_; | 58 scoped_refptr<GrowableIOBuffer> read_buf_; |
59 bool request_headers_received_; | 59 bool request_headers_received_; |
60 | 60 |
61 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); | 61 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); |
62 }; | 62 }; |
63 | 63 |
64 } // namespace net | 64 } // namespace net |
65 | 65 |
66 #endif // NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | 66 #endif // NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
OLD | NEW |