OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 5 #ifndef NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
6 #define NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 6 #define NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <list> | 9 #include <list> |
10 | 10 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; | 90 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; |
91 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; | 91 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; |
92 | 92 |
93 // SpdyStream::Delegate implementation. | 93 // SpdyStream::Delegate implementation. |
94 virtual bool OnSendHeadersComplete(int status) OVERRIDE; | 94 virtual bool OnSendHeadersComplete(int status) OVERRIDE; |
95 virtual int OnSendBody() OVERRIDE; | 95 virtual int OnSendBody() OVERRIDE; |
96 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE; | 96 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE; |
97 virtual int OnResponseReceived(const SpdyHeaderBlock& response, | 97 virtual int OnResponseReceived(const SpdyHeaderBlock& response, |
98 base::Time response_time, | 98 base::Time response_time, |
99 int status) OVERRIDE; | 99 int status) OVERRIDE; |
100 virtual void OnDataReceived(const char* data, int length) OVERRIDE; | 100 virtual int OnDataReceived(const char* data, int length) OVERRIDE; |
101 virtual void OnDataSent(int length) OVERRIDE; | 101 virtual void OnDataSent(int length) OVERRIDE; |
102 virtual void OnClose(int status) OVERRIDE; | 102 virtual void OnClose(int status) OVERRIDE; |
103 | 103 |
104 private: | 104 private: |
105 enum State { | 105 enum State { |
106 STATE_DISCONNECTED, | 106 STATE_DISCONNECTED, |
107 STATE_GENERATE_AUTH_TOKEN, | 107 STATE_GENERATE_AUTH_TOKEN, |
108 STATE_GENERATE_AUTH_TOKEN_COMPLETE, | 108 STATE_GENERATE_AUTH_TOKEN_COMPLETE, |
109 STATE_SEND_REQUEST, | 109 STATE_SEND_REQUEST, |
110 STATE_SEND_REQUEST_COMPLETE, | 110 STATE_SEND_REQUEST_COMPLETE, |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 base::WeakPtrFactory<SpdyProxyClientSocket> weak_factory_; | 165 base::WeakPtrFactory<SpdyProxyClientSocket> weak_factory_; |
166 | 166 |
167 const BoundNetLog net_log_; | 167 const BoundNetLog net_log_; |
168 | 168 |
169 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket); | 169 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket); |
170 }; | 170 }; |
171 | 171 |
172 } // namespace net | 172 } // namespace net |
173 | 173 |
174 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 174 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
OLD | NEW |