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 22 matching lines...) Expand all Loading... |
33 #include "net/http/http_response_info.h" | 33 #include "net/http/http_response_info.h" |
34 #include "net/log/net_log_with_source.h" | 34 #include "net/log/net_log_with_source.h" |
35 #include "net/proxy/proxy_server.h" | 35 #include "net/proxy/proxy_server.h" |
36 #include "net/socket/connection_attempts.h" | 36 #include "net/socket/connection_attempts.h" |
37 #include "net/url_request/url_request_status.h" | 37 #include "net/url_request/url_request_status.h" |
38 #include "url/gurl.h" | 38 #include "url/gurl.h" |
39 #include "url/origin.h" | 39 #include "url/origin.h" |
40 | 40 |
41 namespace base { | 41 namespace base { |
42 class Value; | 42 class Value; |
43 | |
44 namespace debug { | |
45 class StackTrace; | |
46 } // namespace debug | |
47 } // namespace base | 43 } // namespace base |
48 | 44 |
49 namespace net { | 45 namespace net { |
50 | 46 |
51 class CookieOptions; | 47 class CookieOptions; |
52 class HostPortPair; | 48 class HostPortPair; |
53 class IOBuffer; | 49 class IOBuffer; |
54 struct LoadTimingInfo; | 50 struct LoadTimingInfo; |
55 struct RedirectInfo; | 51 struct RedirectInfo; |
56 class SSLCertRequestInfo; | 52 class SSLCertRequestInfo; |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
856 | 852 |
857 // The raw header size of the response. | 853 // The raw header size of the response. |
858 int raw_header_size_; | 854 int raw_header_size_; |
859 | 855 |
860 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 856 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
861 }; | 857 }; |
862 | 858 |
863 } // namespace net | 859 } // namespace net |
864 | 860 |
865 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 861 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
OLD | NEW |