| Index: remoting/host/token_validator_base.cc
|
| diff --git a/remoting/host/token_validator_base.cc b/remoting/host/token_validator_base.cc
|
| index d461b578b03bbec2e3db52df3628f0d2090dd283..42cafe195d29152d6c03e41f93d1f493650cd9de 100644
|
| --- a/remoting/host/token_validator_base.cc
|
| +++ b/remoting/host/token_validator_base.cc
|
| @@ -36,6 +36,7 @@
|
| #include "net/url_request/url_request.h"
|
| #include "net/url_request/url_request_context.h"
|
| #include "net/url_request/url_request_status.h"
|
| +#include "remoting/base/logging.h"
|
| #include "url/gurl.h"
|
|
|
| namespace {
|
| @@ -236,6 +237,13 @@ void TokenValidatorBase::ContinueWithCertificate(
|
| net::X509Certificate* client_cert,
|
| net::SSLPrivateKey* client_private_key) {
|
| if (request_) {
|
| + if (client_cert) {
|
| + HOST_LOG << "Using certificate issued by: '"
|
| + << client_cert->issuer().common_name << "' with start date: '"
|
| + << client_cert->valid_start() << "' and expiry date: '"
|
| + << client_cert->valid_expiry() << "'";
|
| + }
|
| +
|
| request_->ContinueWithCertificate(client_cert, client_private_key);
|
| }
|
| }
|
|
|