| OLD | NEW |
| 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_URL_REQUEST_URL_REQUEST_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "net/base/load_states.h" | 23 #include "net/base/load_states.h" |
| 24 #include "net/base/load_timing_info.h" | 24 #include "net/base/load_timing_info.h" |
| 25 #include "net/base/net_error_details.h" | 25 #include "net/base/net_error_details.h" |
| 26 #include "net/base/net_export.h" | 26 #include "net/base/net_export.h" |
| 27 #include "net/base/network_delegate.h" | 27 #include "net/base/network_delegate.h" |
| 28 #include "net/base/request_priority.h" | 28 #include "net/base/request_priority.h" |
| 29 #include "net/base/upload_progress.h" | 29 #include "net/base/upload_progress.h" |
| 30 #include "net/cookies/canonical_cookie.h" | 30 #include "net/cookies/canonical_cookie.h" |
| 31 #include "net/http/http_request_headers.h" | 31 #include "net/http/http_request_headers.h" |
| 32 #include "net/http/http_response_info.h" | 32 #include "net/http/http_response_info.h" |
| 33 #include "net/log/net_log.h" | 33 #include "net/log/net_log_with_source.h" |
| 34 #include "net/socket/connection_attempts.h" | 34 #include "net/socket/connection_attempts.h" |
| 35 #include "net/url_request/url_request_status.h" | 35 #include "net/url_request/url_request_status.h" |
| 36 #include "url/gurl.h" | 36 #include "url/gurl.h" |
| 37 #include "url/origin.h" | 37 #include "url/origin.h" |
| 38 | 38 |
| 39 namespace base { | 39 namespace base { |
| 40 class Value; | 40 class Value; |
| 41 | 41 |
| 42 namespace debug { | 42 namespace debug { |
| 43 class StackTrace; | 43 class StackTrace; |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 | 853 |
| 854 // The raw header size of the response. | 854 // The raw header size of the response. |
| 855 int raw_header_size_; | 855 int raw_header_size_; |
| 856 | 856 |
| 857 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 857 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
| 858 }; | 858 }; |
| 859 | 859 |
| 860 } // namespace net | 860 } // namespace net |
| 861 | 861 |
| 862 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 862 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |