| Index: remoting/protocol/ssl_hmac_channel_authenticator.cc
|
| diff --git a/remoting/protocol/ssl_hmac_channel_authenticator.cc b/remoting/protocol/ssl_hmac_channel_authenticator.cc
|
| index d8385c3ffbe4dc07d90ec00aced3fc5d03cf1c81..2bd2510203b19078931ca7e8804502c12e606f13 100644
|
| --- a/remoting/protocol/ssl_hmac_channel_authenticator.cc
|
| +++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc
|
| @@ -43,16 +43,12 @@ class FailingCertVerifier : public net::CertVerifier {
|
| net::CRLSet* crl_set,
|
| net::CertVerifyResult* verify_result,
|
| const net::CompletionCallback& callback,
|
| - RequestHandle* out_req,
|
| + scoped_ptr<Request>* out_req,
|
| const net::BoundNetLog& net_log) override {
|
| verify_result->verified_cert = cert;
|
| verify_result->cert_status = net::CERT_STATUS_INVALID;
|
| return net::ERR_CERT_INVALID;
|
| }
|
| -
|
| - void CancelRequest(RequestHandle req) override {
|
| - NOTIMPLEMENTED();
|
| - }
|
| };
|
|
|
| } // namespace
|
|
|