| Index: net/cert/ct_log_verifier.h
|
| diff --git a/net/cert/ct_log_verifier.h b/net/cert/ct_log_verifier.h
|
| index 9cfa1d4ed87c8edace89b9e3ba8f2c8d29c65b1a..3e92d4fffcc823f2e55d01e1f7139b67a043bd73 100644
|
| --- a/net/cert/ct_log_verifier.h
|
| +++ b/net/cert/ct_log_verifier.h
|
| @@ -40,12 +40,17 @@ class NET_EXPORT CTLogVerifier {
|
| const base::StringPiece& description,
|
| const base::StringPiece& url);
|
|
|
| + // Copy constructor
|
| + CTLogVerifier(const CTLogVerifier& other);
|
| +
|
| ~CTLogVerifier();
|
|
|
| // Returns the log's key ID (RFC6962, Section 3.2)
|
| const std::string& key_id() const { return key_id_; }
|
| // Returns the log's human-readable description.
|
| const std::string& description() const { return description_; }
|
| + // Returns the log's URL
|
| + const GURL& url() const { return url_; }
|
|
|
| // Verifies that |sct| contains a valid signature for |entry|.
|
| bool Verify(const ct::LogEntry& entry,
|
|
|