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) 2009, 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 11 matching lines...) Expand all Loading... |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "platform/network/ResourceRequest.h" | 28 #include "platform/network/ResourceRequest.h" |
29 #include "platform/weborigin/SecurityOrigin.h" | 29 #include "platform/weborigin/SecurityOrigin.h" |
30 #include "public/platform/WebURLRequest.h" | 30 #include "public/platform/WebURLRequest.h" |
31 | 31 |
32 namespace WebCore { | 32 namespace blink { |
33 | 33 |
34 double ResourceRequest::s_defaultTimeoutInterval = INT_MAX; | 34 double ResourceRequest::s_defaultTimeoutInterval = INT_MAX; |
35 | 35 |
36 PassOwnPtr<ResourceRequest> ResourceRequest::adopt(PassOwnPtr<CrossThreadResourc
eRequestData> data) | 36 PassOwnPtr<ResourceRequest> ResourceRequest::adopt(PassOwnPtr<CrossThreadResourc
eRequestData> data) |
37 { | 37 { |
38 OwnPtr<ResourceRequest> request = adoptPtr(new ResourceRequest()); | 38 OwnPtr<ResourceRequest> request = adoptPtr(new ResourceRequest()); |
39 request->setURL(data->m_url); | 39 request->setURL(data->m_url); |
40 request->setCachePolicy(data->m_cachePolicy); | 40 request->setCachePolicy(data->m_cachePolicy); |
41 request->setTimeoutInterval(data->m_timeoutInterval); | 41 request->setTimeoutInterval(data->m_timeoutInterval); |
42 request->setFirstPartyForCookies(data->m_firstPartyForCookies); | 42 request->setFirstPartyForCookies(data->m_firstPartyForCookies); |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 // This is used by the loader to control the number of issued parallel load requ
ests. | 408 // This is used by the loader to control the number of issued parallel load requ
ests. |
409 unsigned initializeMaximumHTTPConnectionCountPerHost() | 409 unsigned initializeMaximumHTTPConnectionCountPerHost() |
410 { | 410 { |
411 // The chromium network stack already handles limiting the number of | 411 // The chromium network stack already handles limiting the number of |
412 // parallel requests per host, so there's no need to do it here. Therefore, | 412 // parallel requests per host, so there's no need to do it here. Therefore, |
413 // this is set to a high value that should never be hit in practice. | 413 // this is set to a high value that should never be hit in practice. |
414 return 10000; | 414 return 10000; |
415 } | 415 } |
416 | 416 |
417 } | 417 } |
OLD | NEW |