| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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" |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "base/time.h" | 12 #include "base/time.h" |
| 13 #include "net/base/address_list.h" | 13 #include "net/base/address_list.h" |
| 14 #include "net/base/client_socket_handle.h" | |
| 15 #include "net/base/client_socket_pool.h" | |
| 16 #include "net/base/host_resolver.h" | 14 #include "net/base/host_resolver.h" |
| 17 #include "net/base/io_buffer.h" | 15 #include "net/base/io_buffer.h" |
| 18 #include "net/base/load_flags.h" | 16 #include "net/base/load_flags.h" |
| 19 #include "net/base/load_states.h" | 17 #include "net/base/load_states.h" |
| 20 #include "net/base/ssl_config_service.h" | 18 #include "net/base/ssl_config_service.h" |
| 21 #include "net/http/http_auth.h" | 19 #include "net/http/http_auth.h" |
| 22 #include "net/http/http_auth_handler.h" | 20 #include "net/http/http_auth_handler.h" |
| 23 #include "net/http/http_response_info.h" | 21 #include "net/http/http_response_info.h" |
| 24 #include "net/http/http_transaction.h" | 22 #include "net/http/http_transaction.h" |
| 25 #include "net/proxy/proxy_service.h" | 23 #include "net/proxy/proxy_service.h" |
| 24 #include "net/socket/client_socket_handle.h" |
| 25 #include "net/socket/client_socket_pool.h" |
| 26 #include "testing/gtest/include/gtest/gtest_prod.h" | 26 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 27 | 27 |
| 28 namespace net { | 28 namespace net { |
| 29 | 29 |
| 30 class ClientSocketFactory; | 30 class ClientSocketFactory; |
| 31 class HttpChunkedDecoder; | 31 class HttpChunkedDecoder; |
| 32 class HttpNetworkSession; | 32 class HttpNetworkSession; |
| 33 class HttpStream; | 33 class HttpStream; |
| 34 class UploadDataStream; | 34 class UploadDataStream; |
| 35 | 35 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 // The time the host resolution started (if it indeed got started). | 386 // The time the host resolution started (if it indeed got started). |
| 387 base::Time host_resolution_start_time_; | 387 base::Time host_resolution_start_time_; |
| 388 | 388 |
| 389 // The next state in the state machine. | 389 // The next state in the state machine. |
| 390 State next_state_; | 390 State next_state_; |
| 391 }; | 391 }; |
| 392 | 392 |
| 393 } // namespace net | 393 } // namespace net |
| 394 | 394 |
| 395 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 395 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| OLD | NEW |