| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 4 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 double m_timeoutInterval; | 248 double m_timeoutInterval; |
| 249 KURL m_firstPartyForCookies; | 249 KURL m_firstPartyForCookies; |
| 250 | 250 |
| 251 String m_httpMethod; | 251 String m_httpMethod; |
| 252 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; | 252 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; |
| 253 RefPtr<FormData> m_httpBody; | 253 RefPtr<FormData> m_httpBody; |
| 254 bool m_allowStoredCredentials; | 254 bool m_allowStoredCredentials; |
| 255 bool m_reportUploadProgress; | 255 bool m_reportUploadProgress; |
| 256 bool m_hasUserGesture; | 256 bool m_hasUserGesture; |
| 257 bool m_downloadToFile; | 257 bool m_downloadToFile; |
| 258 bool m_skipServiceWorker; |
| 258 ResourceLoadPriority m_priority; | 259 ResourceLoadPriority m_priority; |
| 259 int m_intraPriorityValue; | 260 int m_intraPriorityValue; |
| 260 int m_requestorID; | 261 int m_requestorID; |
| 261 int m_requestorProcessID; | 262 int m_requestorProcessID; |
| 262 int m_appCacheHostID; | 263 int m_appCacheHostID; |
| 263 blink::WebURLRequest::RequestContext m_requestContext; | 264 blink::WebURLRequest::RequestContext m_requestContext; |
| 264 blink::WebURLRequest::FrameType m_frameType; | 265 blink::WebURLRequest::FrameType m_frameType; |
| 265 ReferrerPolicy m_referrerPolicy; | 266 ReferrerPolicy m_referrerPolicy; |
| 266 }; | 267 }; |
| 267 | 268 |
| 268 unsigned initializeMaximumHTTPConnectionCountPerHost(); | 269 unsigned initializeMaximumHTTPConnectionCountPerHost(); |
| 269 | 270 |
| 270 } // namespace blink | 271 } // namespace blink |
| 271 | 272 |
| 272 #endif // ResourceRequest_h | 273 #endif // ResourceRequest_h |
| OLD | NEW |