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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2810073002: Blink Rename follow-up: URLs --big-rename--> _ur_ls --this-fix--> _urls. (Closed)
Patch Set: Created 3 years, 8 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: 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;

Powered by Google App Engine
This is Rietveld 408576698