| Index: net/test/spawned_test_server/base_test_server.h
|
| diff --git a/net/test/spawned_test_server/base_test_server.h b/net/test/spawned_test_server/base_test_server.h
|
| index 5fd57f115405d9e557ce972402b5bc5c24a9ab5b..d430b0e732fff538c7325a5aca1cd9d402866d17 100644
|
| --- a/net/test/spawned_test_server/base_test_server.h
|
| +++ b/net/test/spawned_test_server/base_test_server.h
|
| @@ -262,6 +262,10 @@ class BaseTestServer {
|
| ws_basic_auth_ = ws_basic_auth;
|
| }
|
|
|
| + // Marks the root certificate of an HTTPS test server as trusted for
|
| + // the duration of tests.
|
| + bool LoadTestRootCert() const WARN_UNUSED_RESULT;
|
| +
|
| protected:
|
| virtual ~BaseTestServer();
|
| Type type() const { return type_; }
|
| @@ -300,10 +304,6 @@ class BaseTestServer {
|
| private:
|
| void Init(const std::string& host);
|
|
|
| - // Marks the root certificate of an HTTPS test server as trusted for
|
| - // the duration of tests.
|
| - bool LoadTestRootCert() const WARN_UNUSED_RESULT;
|
| -
|
| // Document root of the test server.
|
| base::FilePath document_root_;
|
|
|
|
|