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

Unified Diff: net/base/x509_util_openssl.h

Issue 8166003: OpenSSL component build fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « crypto/openssl_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/x509_util_openssl.h
diff --git a/net/base/x509_util_openssl.h b/net/base/x509_util_openssl.h
index 7faa0085ba6fbddbccd8fcffd3835ea75f11d26b..fbe6336e5ead8c7e42ce7bd51e14bb020df56549 100644
--- a/net/base/x509_util_openssl.h
+++ b/net/base/x509_util_openssl.h
@@ -12,6 +12,8 @@
#include <string>
#include <vector>
+#include "net/base/net_export.h"
+
namespace base {
class Time;
} // namespace base
@@ -22,16 +24,20 @@ namespace net {
// into more convenient std / base datatypes.
namespace x509_util {
-bool ParsePrincipalKeyAndValueByIndex(X509_NAME* name,
- int index,
- std::string* key,
- std::string* value);
+bool NET_EXPORT ParsePrincipalKeyAndValueByIndex(X509_NAME* name,
+ int index,
+ std::string* key,
+ std::string* value);
-bool ParsePrincipalValueByIndex(X509_NAME* name, int index, std::string* value);
+bool NET_EXPORT ParsePrincipalValueByIndex(X509_NAME* name,
wtc 2011/10/06 17:41:07 Nit: ParsePrincipalValueByIndex isn't used outside
+ int index,
+ std::string* value);
-bool ParsePrincipalValueByNID(X509_NAME* name, int nid, std::string* value);
+bool NET_EXPORT ParsePrincipalValueByNID(X509_NAME* name,
+ int nid,
+ std::string* value);
-bool ParseDate(ASN1_TIME* x509_time, base::Time* time);
+bool NET_EXPORT ParseDate(ASN1_TIME* x509_time, base::Time* time);
} // namespace x509_util
« no previous file with comments | « crypto/openssl_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698