| Index: net/spdy/spdy_network_transaction.h
|
| diff --git a/net/spdy/spdy_network_transaction.h b/net/spdy/spdy_network_transaction.h
|
| index 12b055c7125128837f3c6385939e6a18274b746b..686c3f758802f6dfb0b62cbbe99c8a325570d955 100644
|
| --- a/net/spdy/spdy_network_transaction.h
|
| +++ b/net/spdy/spdy_network_transaction.h
|
| @@ -56,6 +56,8 @@ class SpdyNetworkTransaction : public HttpTransaction {
|
| enum State {
|
| STATE_INIT_CONNECTION,
|
| STATE_INIT_CONNECTION_COMPLETE,
|
| + STATE_GET_STREAM,
|
| + STATE_GET_STREAM_COMPLETE,
|
| STATE_SEND_REQUEST,
|
| STATE_SEND_REQUEST_COMPLETE,
|
| STATE_READ_HEADERS,
|
| @@ -77,6 +79,8 @@ class SpdyNetworkTransaction : public HttpTransaction {
|
| // next state method as the result arg.
|
| int DoInitConnection();
|
| int DoInitConnectionComplete(int result);
|
| + int DoGetStream();
|
| + int DoGetStreamComplete(int result);
|
| int DoSendRequest();
|
| int DoSendRequestComplete(int result);
|
| int DoReadHeaders();
|
|
|