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

Unified Diff: crypto/scoped_nss_types.h

Issue 8413024: Add ECPrivateKey for Elliptic Curve keypair generation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review changes Created 9 years, 1 month 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
« no previous file with comments | « crypto/ec_private_key_unittest.cc ('k') | crypto/third_party/nss/chromium-nss.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/scoped_nss_types.h
diff --git a/crypto/scoped_nss_types.h b/crypto/scoped_nss_types.h
index d8d78b0592d3838810520807b7850c443f7c1502..9bb9968864052ecdf74ce47bf1aa4e58e67c43ce 100644
--- a/crypto/scoped_nss_types.h
+++ b/crypto/scoped_nss_types.h
@@ -9,6 +9,7 @@
#include <keyhi.h>
#include <nss.h>
#include <pk11pub.h>
+#include <plarena.h>
#include "base/memory/scoped_ptr.h"
@@ -53,6 +54,10 @@ typedef scoped_ptr_malloc<
SECItem, NSSDestroyer1<SECItem,
SECITEM_FreeItem,
PR_TRUE> > ScopedSECItem;
+typedef scoped_ptr_malloc<
+ PLArenaPool, NSSDestroyer1<PLArenaPool,
+ PORT_FreeArena,
+ PR_FALSE> > ScopedPLArenaPool;
} // namespace crypto
« no previous file with comments | « crypto/ec_private_key_unittest.cc ('k') | crypto/third_party/nss/chromium-nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698