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_HTTP_JOB_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ |
6 #define NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 virtual LoadState GetLoadState() const OVERRIDE; | 100 virtual LoadState GetLoadState() const OVERRIDE; |
101 virtual UploadProgress GetUploadProgress() const OVERRIDE; | 101 virtual UploadProgress GetUploadProgress() const OVERRIDE; |
102 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; | 102 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
103 virtual bool GetCharset(std::string* charset) OVERRIDE; | 103 virtual bool GetCharset(std::string* charset) OVERRIDE; |
104 virtual void GetResponseInfo(HttpResponseInfo* info) OVERRIDE; | 104 virtual void GetResponseInfo(HttpResponseInfo* info) OVERRIDE; |
105 virtual void GetLoadTimingInfo( | 105 virtual void GetLoadTimingInfo( |
106 LoadTimingInfo* load_timing_info) const OVERRIDE; | 106 LoadTimingInfo* load_timing_info) const OVERRIDE; |
107 virtual bool GetResponseCookies(std::vector<std::string>* cookies) OVERRIDE; | 107 virtual bool GetResponseCookies(std::vector<std::string>* cookies) OVERRIDE; |
108 virtual int GetResponseCode() const OVERRIDE; | 108 virtual int GetResponseCode() const OVERRIDE; |
109 virtual Filter* SetupFilter() const OVERRIDE; | 109 virtual Filter* SetupFilter() const OVERRIDE; |
| 110 virtual bool CopyFragmentOnRedirect(const GURL& location) const OVERRIDE; |
110 virtual bool IsSafeRedirect(const GURL& location) OVERRIDE; | 111 virtual bool IsSafeRedirect(const GURL& location) OVERRIDE; |
111 virtual bool NeedsAuth() OVERRIDE; | 112 virtual bool NeedsAuth() OVERRIDE; |
112 virtual void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*) OVERRIDE; | 113 virtual void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*) OVERRIDE; |
113 virtual void SetAuth(const AuthCredentials& credentials) OVERRIDE; | 114 virtual void SetAuth(const AuthCredentials& credentials) OVERRIDE; |
114 virtual void CancelAuth() OVERRIDE; | 115 virtual void CancelAuth() OVERRIDE; |
115 virtual void ContinueWithCertificate(X509Certificate* client_cert) OVERRIDE; | 116 virtual void ContinueWithCertificate(X509Certificate* client_cert) OVERRIDE; |
116 virtual void ContinueDespiteLastError() OVERRIDE; | 117 virtual void ContinueDespiteLastError() OVERRIDE; |
117 virtual void ResumeNetworkStart() OVERRIDE; | 118 virtual void ResumeNetworkStart() OVERRIDE; |
118 virtual bool ReadRawData(IOBuffer* buf, int buf_size, | 119 virtual bool ReadRawData(IOBuffer* buf, int buf_size, |
119 int* bytes_read) OVERRIDE; | 120 int* bytes_read) OVERRIDE; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 base::WeakPtrFactory<URLRequestHttpJob> weak_factory_; | 251 base::WeakPtrFactory<URLRequestHttpJob> weak_factory_; |
251 | 252 |
252 CompletionCallback on_headers_received_callback_; | 253 CompletionCallback on_headers_received_callback_; |
253 | 254 |
254 // We allow the network delegate to modify a copy of the response headers. | 255 // We allow the network delegate to modify a copy of the response headers. |
255 // This prevents modifications of headers that are shared with the underlying | 256 // This prevents modifications of headers that are shared with the underlying |
256 // layers of the network stack. | 257 // layers of the network stack. |
257 scoped_refptr<HttpResponseHeaders> override_response_headers_; | 258 scoped_refptr<HttpResponseHeaders> override_response_headers_; |
258 | 259 |
259 // The network delegate can mark a URL as safe for redirection. | 260 // The network delegate can mark a URL as safe for redirection. |
| 261 // The reference fragment of the original URL is not appended to the redirect |
| 262 // URL when the redirect URL is equal to |allowed_unsafe_redirect_url_|. |
260 GURL allowed_unsafe_redirect_url_; | 263 GURL allowed_unsafe_redirect_url_; |
261 | 264 |
262 // Flag used to verify that |this| is not deleted while we are awaiting | 265 // Flag used to verify that |this| is not deleted while we are awaiting |
263 // a callback from the NetworkDelegate. Used as a fail-fast mechanism. | 266 // a callback from the NetworkDelegate. Used as a fail-fast mechanism. |
264 // True if we are waiting a callback and | 267 // True if we are waiting a callback and |
265 // NetworkDelegate::NotifyURLRequestDestroyed has not been called, yet, | 268 // NetworkDelegate::NotifyURLRequestDestroyed has not been called, yet, |
266 // to inform the NetworkDelegate that it may not call back. | 269 // to inform the NetworkDelegate that it may not call back. |
267 bool awaiting_callback_; | 270 bool awaiting_callback_; |
268 | 271 |
269 const HttpUserAgentSettings* http_user_agent_settings_; | 272 const HttpUserAgentSettings* http_user_agent_settings_; |
270 | 273 |
271 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob); | 274 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob); |
272 }; | 275 }; |
273 | 276 |
274 } // namespace net | 277 } // namespace net |
275 | 278 |
276 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ | 279 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ |
OLD | NEW |