Index: net/cert/internal/cert_issuer_source_static.cc |
diff --git a/net/cert/internal/cert_issuer_source_static.cc b/net/cert/internal/cert_issuer_source_static.cc |
index c7685f436a1bbf45b703e26b08614535eba21c5f..52758e6e4f9657c1ecd517589157e84c1ddf7535 100644 |
--- a/net/cert/internal/cert_issuer_source_static.cc |
+++ b/net/cert/internal/cert_issuer_source_static.cc |
@@ -16,9 +16,8 @@ void CertIssuerSourceStatic::AddCert(scoped_refptr<ParsedCertificate> cert) { |
cert->normalized_subject().AsStringPiece(), std::move(cert))); |
} |
-void CertIssuerSourceStatic::SyncGetIssuersOf( |
- const ParsedCertificate* cert, |
- std::vector<scoped_refptr<ParsedCertificate>>* issuers) { |
+void CertIssuerSourceStatic::SyncGetIssuersOf(const ParsedCertificate* cert, |
+ ParsedCertificateList* issuers) { |
auto range = |
intermediates_.equal_range(cert->normalized_issuer().AsStringPiece()); |
for (auto it = range.first; it != range.second; ++it) |