Chromium Code Reviews| Index: net/base/x509_certificate.h |
| =================================================================== |
| --- net/base/x509_certificate.h (revision 19029) |
| +++ net/base/x509_certificate.h (working copy) |
| @@ -38,7 +38,7 @@ |
| public: |
| // SHA-1 fingerprint (160 bits) of a certificate. |
| struct Fingerprint { |
| - bool operator==(const Fingerprint& other) const { |
| + bool Equals(const Fingerprint& other) const { |
| return memcmp(data, other.data, sizeof(data)) == 0; |
| } |