summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/network/chromium/ResourceRequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/network/chromium/ResourceRequest.cpp')
-rw-r--r--WebCore/platform/network/chromium/ResourceRequest.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/platform/network/chromium/ResourceRequest.cpp b/WebCore/platform/network/chromium/ResourceRequest.cpp
index 5b27c1b..016bd34 100644
--- a/WebCore/platform/network/chromium/ResourceRequest.cpp
+++ b/WebCore/platform/network/chromium/ResourceRequest.cpp
@@ -31,7 +31,10 @@ namespace WebCore {
// This is used by the loader to control the number of issued parallel load requests.
unsigned initializeMaximumHTTPConnectionCountPerHost()
{
- return 6;
+ // The chromium network stack already handles limiting the number of
+ // parallel requests per host, so there's no need to do it here. Therefore,
+ // this is set to a high value that should never be hit in practice.
+ return 10000;
}
} // namespace WebCore