diff options
Diffstat (limited to 'net/http/http_network_transaction.h')
-rw-r--r-- | net/http/http_network_transaction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_network_transaction.h b/net/http/http_network_transaction.h index 9cca6c1..7c32bd3 100644 --- a/net/http/http_network_transaction.h +++ b/net/http/http_network_transaction.h @@ -95,6 +95,8 @@ class HttpNetworkTransaction : public HttpTransaction { STATE_READ_BODY_COMPLETE, STATE_DRAIN_BODY_FOR_AUTH_RESTART, STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE, + STATE_SPDY_GET_STREAM, + STATE_SPDY_GET_STREAM_COMPLETE, STATE_SPDY_SEND_REQUEST, STATE_SPDY_SEND_REQUEST_COMPLETE, STATE_SPDY_READ_HEADERS, @@ -136,6 +138,8 @@ class HttpNetworkTransaction : public HttpTransaction { int DoReadBodyComplete(int result); int DoDrainBodyForAuthRestart(); int DoDrainBodyForAuthRestartComplete(int result); + int DoSpdyGetStream(); + int DoSpdyGetStreamComplete(int result); int DoSpdySendRequest(); int DoSpdySendRequestComplete(int result); int DoSpdyReadHeaders(); |