Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2840)

Unified Diff: remoting/protocol/ssl_hmac_channel_authenticator.cc

Issue 1921563003: Renaming _openssl files to _impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 544e640d995a235ba5dbb176cbef93dceb9b1bc6..ec545752520e2a542f2cee58a1b6ae44579b2ec7 100644
--- a/remoting/protocol/ssl_hmac_channel_authenticator.cc
+++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc
@@ -34,7 +34,7 @@
#include "remoting/protocol/p2p_stream_socket.h"
#if defined(OS_NACL)
-#include "net/socket/ssl_client_socket_openssl.h"
+#include "net/socket/ssl_client_socket_impl.h"
#else
#include "net/socket/client_socket_factory.h"
#endif
@@ -269,7 +269,7 @@ void SslHmacChannelAuthenticator::SecureAndAuthenticate(
#if defined(OS_NACL)
// net_nacl doesn't include ClientSocketFactory.
- socket_.reset(new net::SSLClientSocketOpenSSL(
+ socket_.reset(new net::SSLClientSocketImpl(
std::move(socket_handle), host_and_port, ssl_config, context));
#else
socket_ =

Powered by Google App Engine
This is Rietveld 408576698