Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: net/base/multi_threaded_cert_verifier_unittest.cc

Issue 10825211: Implement SHA-256 fingerprint support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/multi_threaded_cert_verifier_unittest.cc
===================================================================
--- net/base/multi_threaded_cert_verifier_unittest.cc (revision 150170)
+++ net/base/multi_threaded_cert_verifier_unittest.cc (working copy)
@@ -243,10 +243,10 @@
}
TEST_F(MultiThreadedCertVerifierTest, RequestParamsComparators) {
- SHA1Fingerprint a_key;
+ SHA1HashValue a_key;
memset(a_key.data, 'a', sizeof(a_key.data));
- SHA1Fingerprint z_key;
+ SHA1HashValue z_key;
memset(z_key.data, 'z', sizeof(z_key.data));
struct {

Powered by Google App Engine
This is Rietveld 408576698