| 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 KURL m_url; | 248 KURL m_url; |
| 249 | 249 |
| 250 ResourceRequestCachePolicy m_cachePolicy; | 250 ResourceRequestCachePolicy m_cachePolicy; |
| 251 double m_timeoutInterval; | 251 double m_timeoutInterval; |
| 252 KURL m_firstPartyForCookies; | 252 KURL m_firstPartyForCookies; |
| 253 | 253 |
| 254 String m_httpMethod; | 254 String m_httpMethod; |
| 255 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; | 255 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; |
| 256 RefPtr<FormData> m_httpBody; | 256 RefPtr<FormData> m_httpBody; |
| 257 bool m_allowCookies; | 257 bool m_allowCookies; |
| 258 bool m_reportUploadProgress; |
| 258 bool m_hasUserGesture; | 259 bool m_hasUserGesture; |
| 259 bool m_downloadToFile; | 260 bool m_downloadToFile; |
| 260 ResourceLoadPriority m_priority; | 261 ResourceLoadPriority m_priority; |
| 261 int m_requestorID; | 262 int m_requestorID; |
| 262 int m_requestorProcessID; | 263 int m_requestorProcessID; |
| 263 int m_appCacheHostID; | 264 int m_appCacheHostID; |
| 264 ResourceRequest::TargetType m_targetType; | 265 ResourceRequest::TargetType m_targetType; |
| 265 }; | 266 }; |
| 266 | 267 |
| 267 unsigned initializeMaximumHTTPConnectionCountPerHost(); | 268 unsigned initializeMaximumHTTPConnectionCountPerHost(); |
| 268 | 269 |
| 269 } // namespace WebCore | 270 } // namespace WebCore |
| 270 | 271 |
| 271 #endif // ResourceRequest_h | 272 #endif // ResourceRequest_h |
| OLD | NEW |