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

Unified Diff: net/third_party/nss/ssl/sslimpl.h

Issue 4670004: Change NSS's native auth patch to use PCERT_KEY_CONTEXT instead of HCRYPTPROV on Win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to trunk Created 9 years, 11 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: net/third_party/nss/ssl/sslimpl.h
diff --git a/net/third_party/nss/ssl/sslimpl.h b/net/third_party/nss/ssl/sslimpl.h
index c656f65245564400057a1daff8117bd408fa8efa..1a653329a485b50a7845b97d2c80e37f05d2b355 100644
--- a/net/third_party/nss/ssl/sslimpl.h
+++ b/net/third_party/nss/ssl/sslimpl.h
@@ -854,7 +854,7 @@ const ssl3CipherSuiteDef *suite_def;
#ifdef NSS_PLATFORM_CLIENT_AUTH
#if defined(XP_WIN32)
-typedef HCRYPTPROV PlatformKey;
+typedef struct _CERT_KEY_CONTEXT *PlatformKey;
wtc 2011/02/04 01:32:16 Since we already include <wincrypt.h> on line 71 a
#elif defined(XP_MACOSX)
typedef SecKeyRef PlatformKey;
#else

Powered by Google App Engine
This is Rietveld 408576698