diff options
author | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 12:55:01 +0000 |
---|---|---|
committer | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 12:55:01 +0000 |
commit | bc54e2307adc19991b8a61ed4bcaaf1a1b8b0ab4 (patch) | |
tree | 699dba59228de537ee2f02d9e13281b1bbe9a146 /net | |
parent | e5548fce086346028a5def48d74e361c8ec579d6 (diff) | |
download | chromium_src-bc54e2307adc19991b8a61ed4bcaaf1a1b8b0ab4.zip chromium_src-bc54e2307adc19991b8a61ed4bcaaf1a1b8b0ab4.tar.gz chromium_src-bc54e2307adc19991b8a61ed4bcaaf1a1b8b0ab4.tar.bz2 |
Certificate Transparency: Export a missing symbol.
The SignedCertificateTimestampAndStatus should be available for the
SCT viewer UI.
BUG=309578
Review URL: https://codereview.chromium.org/99553007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/ssl/signed_certificate_timestamp_and_status.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/ssl/signed_certificate_timestamp_and_status.h b/net/ssl/signed_certificate_timestamp_and_status.h index 042c7ac..cc89a17 100644 --- a/net/ssl/signed_certificate_timestamp_and_status.h +++ b/net/ssl/signed_certificate_timestamp_and_status.h @@ -8,15 +8,13 @@ #include <vector> #include "base/memory/ref_counted.h" +#include "net/base/net_export.h" #include "net/cert/sct_status_flags.h" +#include "net/cert/signed_certificate_timestamp.h" namespace net { -namespace ct { -struct SignedCertificateTimestamp; -} - -struct SignedCertificateTimestampAndStatus { +struct NET_EXPORT SignedCertificateTimestampAndStatus { SignedCertificateTimestampAndStatus( const scoped_refptr<ct::SignedCertificateTimestamp>& sct, ct::SCTVerifyStatus status); |