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

Unified Diff: components/autofill/content/browser/risk/fingerprint.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Comment Updates 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: components/autofill/content/browser/risk/fingerprint.cc
diff --git a/components/autofill/content/browser/risk/fingerprint.cc b/components/autofill/content/browser/risk/fingerprint.cc
index 09041403cccfb6f7a0e404993f48044e37fe6456..d382553c87c5af57e73ffcabe7740d5b890ca743 100644
--- a/components/autofill/content/browser/risk/fingerprint.cc
+++ b/components/autofill/content/browser/risk/fingerprint.cc
@@ -86,7 +86,7 @@ void AddFontsToFingerprint(const base::ListValue& fonts,
// Each item in the list is a two-element list such that the first element
// is the font family and the second is the font name.
const base::ListValue* font_description = NULL;
- bool success = it->GetAsList(&font_description);
+ bool success = it.GetAsList(&font_description);
DCHECK(success);
std::string font_name;

Powered by Google App Engine
This is Rietveld 408576698