| Index: net/http/http_auth_handler_factory_unittest.cc
|
| diff --git a/net/http/http_auth_handler_factory_unittest.cc b/net/http/http_auth_handler_factory_unittest.cc
|
| index 5293b89b320577da53711dbf169ace4e149607dd..dec336e17b5caec234558f861f2783edc95e40c4 100644
|
| --- a/net/http/http_auth_handler_factory_unittest.cc
|
| +++ b/net/http/http_auth_handler_factory_unittest.cc
|
| @@ -146,7 +146,6 @@ TEST(HttpAuthHandlerFactoryTest, DefaultFactory) {
|
| EXPECT_TRUE(handler->encrypts_identity());
|
| EXPECT_TRUE(handler->is_connection_based());
|
| }
|
| -#if defined(OS_WIN)
|
| {
|
| scoped_refptr<HttpAuthHandler> handler;
|
| int rv = http_auth_handler_factory->CreateAuthHandlerFromString(
|
| @@ -162,18 +161,6 @@ TEST(HttpAuthHandlerFactoryTest, DefaultFactory) {
|
| EXPECT_TRUE(handler->encrypts_identity());
|
| EXPECT_TRUE(handler->is_connection_based());
|
| }
|
| -#else // !defined(OS_WIN)
|
| - {
|
| - scoped_refptr<HttpAuthHandler> handler;
|
| - int rv = http_auth_handler_factory->CreateAuthHandlerFromString(
|
| - "Negotiate",
|
| - HttpAuth::AUTH_SERVER,
|
| - server_origin,
|
| - &handler);
|
| - EXPECT_EQ(ERR_UNSUPPORTED_AUTH_SCHEME, rv);
|
| - EXPECT_TRUE(handler.get() == NULL);
|
| - }
|
| -#endif // !defined(OS_WIN)
|
| }
|
|
|
| } // namespace net
|
|
|