| Index: net/http/http_server_properties_impl_unittest.cc
|
| diff --git a/net/http/http_server_properties_impl_unittest.cc b/net/http/http_server_properties_impl_unittest.cc
|
| index cb414a586ff2f4cb930122bade432f580f89fc97..ae6302b52c32ab3b6a7d62594b9b319e27cda1fc 100644
|
| --- a/net/http/http_server_properties_impl_unittest.cc
|
| +++ b/net/http/http_server_properties_impl_unittest.cc
|
| @@ -347,23 +347,6 @@
|
| EXPECT_TRUE(impl_.IsAlternativeServiceBroken(alternative_service));
|
| impl_.ClearAlternateProtocol(test_host_port_pair);
|
| EXPECT_FALSE(impl_.IsAlternativeServiceBroken(alternative_service));
|
| -}
|
| -
|
| -TEST_F(AlternateProtocolServerPropertiesTest, MarkRecentlyBroken) {
|
| - HostPortPair host_port_pair("foo", 80);
|
| - impl_.SetAlternateProtocol(host_port_pair, 443, NPN_SPDY_4, 1.0);
|
| -
|
| - const AlternativeService alternative_service(NPN_SPDY_4, "foo", 443);
|
| - EXPECT_FALSE(impl_.IsAlternativeServiceBroken(alternative_service));
|
| - EXPECT_FALSE(impl_.WasAlternateProtocolRecentlyBroken(host_port_pair));
|
| -
|
| - impl_.MarkAlternativeServiceRecentlyBroken(alternative_service);
|
| - EXPECT_FALSE(impl_.IsAlternativeServiceBroken(alternative_service));
|
| - EXPECT_TRUE(impl_.WasAlternateProtocolRecentlyBroken(host_port_pair));
|
| -
|
| - impl_.ConfirmAlternateProtocol(host_port_pair);
|
| - EXPECT_FALSE(impl_.IsAlternativeServiceBroken(alternative_service));
|
| - EXPECT_FALSE(impl_.WasAlternateProtocolRecentlyBroken(host_port_pair));
|
| }
|
|
|
| TEST_F(AlternateProtocolServerPropertiesTest, Forced) {
|
|
|