| Index: trunk/src/net/test/spawned_test_server/base_test_server.cc
|
| ===================================================================
|
| --- trunk/src/net/test/spawned_test_server/base_test_server.cc (revision 282330)
|
| +++ trunk/src/net/test/spawned_test_server/base_test_server.cc (working copy)
|
| @@ -165,8 +165,7 @@
|
| BaseTestServer::BaseTestServer(Type type, const std::string& host)
|
| : type_(type),
|
| started_(false),
|
| - log_to_console_(false),
|
| - ws_basic_auth_(false) {
|
| + log_to_console_(false) {
|
| Init(host);
|
| }
|
|
|
| @@ -174,8 +173,7 @@
|
| : ssl_options_(ssl_options),
|
| type_(type),
|
| started_(false),
|
| - log_to_console_(false),
|
| - ws_basic_auth_(false) {
|
| + log_to_console_(false) {
|
| DCHECK(UsingSSL(type));
|
| Init(GetHostname(type, ssl_options));
|
| }
|
| @@ -386,11 +384,6 @@
|
| if (VLOG_IS_ON(1) || log_to_console_)
|
| arguments->Set("log-to-console", base::Value::CreateNullValue());
|
|
|
| - if (ws_basic_auth_) {
|
| - DCHECK(type_ == TYPE_WS || type_ == TYPE_WSS);
|
| - arguments->Set("ws-basic-auth", base::Value::CreateNullValue());
|
| - }
|
| -
|
| if (UsingSSL(type_)) {
|
| // Check the certificate arguments of the HTTPS server.
|
| base::FilePath certificate_path(certificates_dir_);
|
|
|