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

Unified Diff: extensions/browser/verified_contents.cc

Issue 2768033002: Use size_t in crypto::SignatureVerifier. (Closed)
Patch Set: . Created 3 years, 9 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: extensions/browser/verified_contents.cc
diff --git a/extensions/browser/verified_contents.cc b/extensions/browser/verified_contents.cc
index 7ae66762efcb62b38e577ae1c3104eaf999a4fb4..fd60f313c59bb6cd35227e266625fb4c145157fc 100644
--- a/extensions/browser/verified_contents.cc
+++ b/extensions/browser/verified_contents.cc
@@ -62,7 +62,7 @@ DictionaryValue* FindDictionaryWithValue(const ListValue* list,
namespace extensions {
VerifiedContents::VerifiedContents(const uint8_t* public_key,
- int public_key_size)
+ size_t public_key_size)
: public_key_(public_key),
public_key_size_(public_key_size),
valid_signature_(false), // Guilty until proven innocent.

Powered by Google App Engine
This is Rietveld 408576698