diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-18 02:28:57 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-18 02:28:57 +0000 |
commit | 968a9a083270dcf182f593db7acc9f2c0cfa080a (patch) | |
tree | 307d77fa86ef0cb6a094eaf2bf033a315d70e61c /net/base/priority_queue_unittest.cc | |
parent | 522fbeaf970881e5293e8f75cf5534ffb5a20d42 (diff) | |
download | chromium_src-968a9a083270dcf182f593db7acc9f2c0cfa080a.zip chromium_src-968a9a083270dcf182f593db7acc9f2c0cfa080a.tar.gz chromium_src-968a9a083270dcf182f593db7acc9f2c0cfa080a.tar.bz2 |
Revert 235491 "Add a cap of six in-flight requests per host to t..."
Speculative to find the cause for Mac size regression
(will revert this revert later)
> Add a cap of six in-flight requests per host to the ResourceScheduler
>
> There's a cap of 10 delayable in-flight requests already present in the ResourceScheduler, but due to the underlying cap on six connections per host we sometimes don't utilize all ten if they're all for the same host. This CL adds an additional per-host cap, meaning if there's already six in-flight requests going to foo.bar.com, another request to foo.bar.com will be skipped in favour of a later-queued request to foo2.bar.com.
>
> Tests from pmeenan@ suggests this results in an overall increase of onload and Speed Index speed by about 2.5%, and DOM Content Loaded speed by 1.15%.
>
> BUG=319488
>
> Review URL: https://codereview.chromium.org/23620058
TBR=oysteine@chromium.org
Review URL: https://codereview.chromium.org/74903002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235592 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/priority_queue_unittest.cc')
-rw-r--r-- | net/base/priority_queue_unittest.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/net/base/priority_queue_unittest.cc b/net/base/priority_queue_unittest.cc index 8093319..0baff6e 100644 --- a/net/base/priority_queue_unittest.cc +++ b/net/base/priority_queue_unittest.cc @@ -89,19 +89,6 @@ TEST_F(PriorityQueueTest, FirstMaxOrder) { CheckEmpty(); } -TEST_F(PriorityQueueTest, GetNextTowardsLastMinAndErase) { - PriorityQueue<int>::Pointer current = queue_.FirstMax(); - for (size_t i = 0; i < kNumElements; ++i) { - EXPECT_FALSE(current.is_null()); - EXPECT_EQ(kFirstMaxOrder[i], current.value()); - PriorityQueue<int>::Pointer next = queue_.GetNextTowardsLastMin(current); - queue_.Erase(current); - current = next; - } - EXPECT_TRUE(current.is_null()); - CheckEmpty(); -} - TEST_F(PriorityQueueTest, FirstMaxOrderErase) { for (size_t i = 0; i < kNumElements; ++i) { EXPECT_EQ(kFirstMaxOrder[i], queue_.FirstMax().value()); |