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

Unified Diff: net/socket/ssl_client_socket_nss.cc

Issue 8817021: Add a new SSLClientSocket::was_origin_cert_sent() method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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: net/socket/ssl_client_socket_nss.cc
===================================================================
--- net/socket/ssl_client_socket_nss.cc (revision 112347)
+++ net/socket/ssl_client_socket_nss.cc (working copy)
@@ -561,6 +561,10 @@
return next_proto_status_;
}
+bool SSLClientSocketNSS::WasOriginBoundCertNegotiated() {
+ return OriginBoundCertNegotiated(nss_fd_);
wtc 2011/12/06 19:22:11 As I noted in ssl_client_socket.h, I believe this
Ryan Hamilton 2011/12/06 20:03:47 Done. (FWIW, this static method is called by the
wtc 2011/12/06 20:47:03 I see. PlatformClientAuthHandler is a static meth
+}
+
int SSLClientSocketNSS::Connect(OldCompletionCallback* callback) {
EnterFunction("");
DCHECK(transport_.get());

Powered by Google App Engine
This is Rietveld 408576698