| Index: net/url_request/url_request_unittest.cc
|
| diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc
|
| index 7126fa3cc70464582e7a941b7d3fa39bbb3b055f..d53c01c74c5b7dda47ea7ead9ec1c9fead5c30e9 100644
|
| --- a/net/url_request/url_request_unittest.cc
|
| +++ b/net/url_request/url_request_unittest.cc
|
| @@ -1418,12 +1418,16 @@ class TestSSLConfigService : public SSLConfigService {
|
| online_rev_checking_(online_rev_checking) {
|
| }
|
|
|
| - virtual void GetSSLConfig(SSLConfig* config) {
|
| + // SSLConfigService:
|
| + virtual void GetSSLConfig(SSLConfig* config) OVERRIDE {
|
| *config = SSLConfig();
|
| config->rev_checking_enabled = online_rev_checking_;
|
| config->verify_ev_cert = ev_enabled_;
|
| }
|
|
|
| + protected:
|
| + virtual ~TestSSLConfigService() {}
|
| +
|
| private:
|
| const bool ev_enabled_;
|
| const bool online_rev_checking_;
|
|
|