Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: net/spdy/spdy_proxy_client_socket.h

Issue 10689034: SPDY - chunked upload - speech recognition doesn't work with SPDY/3 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <list> 10 #include <list>
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // SpdyStream::Delegate implementation. 92 // SpdyStream::Delegate implementation.
93 virtual bool OnSendHeadersComplete(int status) OVERRIDE; 93 virtual bool OnSendHeadersComplete(int status) OVERRIDE;
94 virtual int OnSendBody() OVERRIDE; 94 virtual int OnSendBody() OVERRIDE;
95 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE; 95 virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE;
96 virtual int OnResponseReceived(const SpdyHeaderBlock& response, 96 virtual int OnResponseReceived(const SpdyHeaderBlock& response,
97 base::Time response_time, 97 base::Time response_time,
98 int status) OVERRIDE; 98 int status) OVERRIDE;
99 virtual void OnDataReceived(const char* data, int length) OVERRIDE; 99 virtual void OnDataReceived(const char* data, int length) OVERRIDE;
100 virtual void OnDataSent(int length) OVERRIDE; 100 virtual void OnDataSent(int length) OVERRIDE;
101 virtual void OnClose(int status) OVERRIDE; 101 virtual void OnClose(int status) OVERRIDE;
102 virtual void set_chunk_callback(ChunkCallback* /*callback*/) OVERRIDE;
103 102
104 private: 103 private:
105 enum State { 104 enum State {
106 STATE_DISCONNECTED, 105 STATE_DISCONNECTED,
107 STATE_GENERATE_AUTH_TOKEN, 106 STATE_GENERATE_AUTH_TOKEN,
108 STATE_GENERATE_AUTH_TOKEN_COMPLETE, 107 STATE_GENERATE_AUTH_TOKEN_COMPLETE,
109 STATE_SEND_REQUEST, 108 STATE_SEND_REQUEST,
110 STATE_SEND_REQUEST_COMPLETE, 109 STATE_SEND_REQUEST_COMPLETE,
111 STATE_READ_REPLY_COMPLETE, 110 STATE_READ_REPLY_COMPLETE,
112 STATE_OPEN, 111 STATE_OPEN,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 base::WeakPtrFactory<SpdyProxyClientSocket> weak_factory_; 164 base::WeakPtrFactory<SpdyProxyClientSocket> weak_factory_;
166 165
167 const BoundNetLog net_log_; 166 const BoundNetLog net_log_;
168 167
169 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket); 168 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket);
170 }; 169 };
171 170
172 } // namespace net 171 } // namespace net
173 172
174 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ 173 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698