Index: third_party/WebKit/Source/core/testing/Internals.cpp |
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp |
index a7a8ac7460b3a2e065a75f4ac6f43be02c435b6e..1a12d2df63622a3537834bb3b2522713428d7c65 100644 |
--- a/third_party/WebKit/Source/core/testing/Internals.cpp |
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp |
@@ -2190,10 +2190,10 @@ int Internals::pageNumber(Element* element, |
Vector<String> Internals::IconURLs(Document* document, |
int icon_types_mask) const { |
- Vector<IconURL> icon_ur_ls = document->IconURLs(icon_types_mask); |
+ Vector<IconURL> icon_urls = document->IconURLs(icon_types_mask); |
Vector<String> array; |
- for (auto& icon_url : icon_ur_ls) |
+ for (auto& icon_url : icon_urls) |
array.push_back(icon_url.icon_url_.GetString()); |
return array; |