| Index: net/cert/internal/trust_store_in_memory.h
|
| diff --git a/net/cert/internal/trust_store_in_memory.h b/net/cert/internal/trust_store_in_memory.h
|
| index 0691ff7a1ee5d71c21565adf6469cfd68b485f5b..2fdb0cd41d90040aeb0b0c4bcf40880017c8e0fd 100644
|
| --- a/net/cert/internal/trust_store_in_memory.h
|
| +++ b/net/cert/internal/trust_store_in_memory.h
|
| @@ -30,9 +30,12 @@ class NET_EXPORT TrustStoreInMemory : public TrustStore {
|
|
|
| void AddTrustAnchor(scoped_refptr<TrustAnchor> anchor);
|
|
|
| - // Returns the trust anchors that match |name| in |*matches|, if any.
|
| - void FindTrustAnchorsByNormalizedName(const der::Input& normalized_name,
|
| - TrustAnchors* matches) const override;
|
| + // TrustStore implementation:
|
| + void FindTrustAnchorsForCert(
|
| + const ParsedCertificate* cert,
|
| + const TrustAnchorsCallback& callback,
|
| + TrustAnchors* synchronous_matches,
|
| + std::unique_ptr<Request>* out_req) const override;
|
|
|
| private:
|
| // Multimap from normalized subject -> TrustAnchor.
|
|
|