| Index: net/test/base_test_server.cc
|
| diff --git a/net/test/base_test_server.cc b/net/test/base_test_server.cc
|
| index 3a2dc11ed886e25c610e4ee15d080c7e73750afa..ab9b1210d8573cd5d7e8d27526a00371037205a0 100644
|
| --- a/net/test/base_test_server.cc
|
| +++ b/net/test/base_test_server.cc
|
| @@ -92,7 +92,7 @@ base::FilePath BaseTestServer::SSLOptions::GetCertificateFile() const {
|
|
|
| std::string BaseTestServer::SSLOptions::GetOCSPArgument() const {
|
| if (server_certificate != CERT_AUTO)
|
| - return "";
|
| + return std::string();
|
|
|
| switch (ocsp_status) {
|
| case OCSP_OK:
|
| @@ -107,7 +107,7 @@ std::string BaseTestServer::SSLOptions::GetOCSPArgument() const {
|
| return "unknown";
|
| default:
|
| NOTREACHED();
|
| - return "";
|
| + return std::string();
|
| }
|
| }
|
|
|
|
|