diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-30 21:15:50 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-30 21:15:50 +0000 |
commit | 4c58eac90cfc27e21a276c820f3280a96e69d903 (patch) | |
tree | b0bb880c58486833a3d17f1cccfb21278279261a /net/base/x509_util.h | |
parent | 513b7e3ba99e22c82408f460f370c7cc62b3d346 (diff) | |
download | chromium_src-4c58eac90cfc27e21a276c820f3280a96e69d903.zip chromium_src-4c58eac90cfc27e21a276c820f3280a96e69d903.tar.gz chromium_src-4c58eac90cfc27e21a276c820f3280a96e69d903.tar.bz2 |
Let net_unittests build with the components build on android
BUG=158821
Review URL: https://codereview.chromium.org/11418265
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170539 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/x509_util.h')
-rw-r--r-- | net/base/x509_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/x509_util.h b/net/base/x509_util.h index 623e2b3..734eebd 100644 --- a/net/base/x509_util.h +++ b/net/base/x509_util.h @@ -26,8 +26,8 @@ namespace x509_util { // limited the range to 1950-9999 // (https://bugzilla.mozilla.org/show_bug.cgi?id=786531). This function will // return whether it is supported by the currently used crypto library. -bool IsSupportedValidityRange(base::Time not_valid_before, - base::Time not_valid_after); +NET_EXPORT_PRIVATE bool IsSupportedValidityRange(base::Time not_valid_before, + base::Time not_valid_after); // Creates a server bound certificate containing the public key in |key|. // Domain, serial number and validity period are given as @@ -36,7 +36,7 @@ bool IsSupportedValidityRange(base::Time not_valid_before, // // See Internet Draft draft-balfanz-tls-obc-00 for more details: // http://tools.ietf.org/html/draft-balfanz-tls-obc-00 -bool NET_EXPORT_PRIVATE CreateDomainBoundCertEC( +NET_EXPORT_PRIVATE bool CreateDomainBoundCertEC( crypto::ECPrivateKey* key, const std::string& domain, uint32 serial_number, |