Chromium Code Reviews| 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 d047ec112428234733bfb100dc29a0191c90ad79..cb32a89b60a31c7072501c68bb57e9bb545bac59 100644 |
| --- a/remoting/protocol/ssl_hmac_channel_authenticator.cc |
| +++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc |
| @@ -14,17 +14,22 @@ |
| #include "net/base/net_errors.h" |
| #include "net/cert/cert_status_flags.h" |
| #include "net/cert/cert_verifier.h" |
| +#include "net/cert/cert_verify_result.h" |
| #include "net/cert/x509_certificate.h" |
| #include "net/http/transport_security_state.h" |
| -#include "net/socket/client_socket_factory.h" |
| #include "net/socket/client_socket_handle.h" |
| #include "net/socket/ssl_client_socket.h" |
| -#include "net/socket/ssl_client_socket_openssl.h" |
| #include "net/socket/ssl_server_socket.h" |
| #include "net/ssl/ssl_config_service.h" |
| #include "remoting/base/rsa_key_pair.h" |
| #include "remoting/protocol/auth_util.h" |
| +#if defined(OS_NACL) |
| +#include "net/socket/ssl_client_socket_openssl.h" |
| +#else |
| +#include "net/socket/client_socket_factory.h" |
| +#endif |
|
davidben
2015/06/12 21:39:01
(See line 155. Needed because we were including ss
|
| + |
| namespace remoting { |
| namespace protocol { |