| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 STATE_WRITE_HEADERS, | 377 STATE_WRITE_HEADERS, |
| 378 STATE_WRITE_HEADERS_COMPLETE, | 378 STATE_WRITE_HEADERS_COMPLETE, |
| 379 STATE_WRITE_BODY, | 379 STATE_WRITE_BODY, |
| 380 STATE_WRITE_BODY_COMPLETE, | 380 STATE_WRITE_BODY_COMPLETE, |
| 381 STATE_READ_HEADERS, | 381 STATE_READ_HEADERS, |
| 382 STATE_READ_HEADERS_COMPLETE, | 382 STATE_READ_HEADERS_COMPLETE, |
| 383 STATE_READ_BODY, | 383 STATE_READ_BODY, |
| 384 STATE_READ_BODY_COMPLETE, | 384 STATE_READ_BODY_COMPLETE, |
| 385 STATE_DRAIN_BODY_FOR_AUTH_RESTART, | 385 STATE_DRAIN_BODY_FOR_AUTH_RESTART, |
| 386 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE, | 386 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE, |
| 387 STATE_WAITING_FOR_USER_ACTION, |
| 387 STATE_NONE | 388 STATE_NONE |
| 388 }; | 389 }; |
| 389 State next_state_; | 390 State next_state_; |
| 390 }; | 391 }; |
| 391 | 392 |
| 392 } // namespace net | 393 } // namespace net |
| 393 | 394 |
| 394 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 395 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| OLD | NEW |