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

Unified Diff: third_party/WebKit/Source/core/dom/Document.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 900666f02f56d32fe7f1f1e991e73235bb9842d9..d6d6ed04e34a3bff8aa13e1bcc638e7f5d6bf0c6 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -5448,19 +5448,19 @@ Vector<IconURL> Document::IconURLs(int icon_types_mask) {
}
}
- Vector<IconURL> icon_ur_ls;
+ Vector<IconURL> icon_urls;
if (first_favicon.icon_type_ != kInvalidIcon)
- icon_ur_ls.push_back(first_favicon);
+ icon_urls.push_back(first_favicon);
else if (url_.ProtocolIsInHTTPFamily() && icon_types_mask & kFavicon)
- icon_ur_ls.push_back(IconURL::DefaultFavicon(url_));
+ icon_urls.push_back(IconURL::DefaultFavicon(url_));
if (first_touch_icon.icon_type_ != kInvalidIcon)
- icon_ur_ls.push_back(first_touch_icon);
+ icon_urls.push_back(first_touch_icon);
if (first_touch_precomposed_icon.icon_type_ != kInvalidIcon)
- icon_ur_ls.push_back(first_touch_precomposed_icon);
+ icon_urls.push_back(first_touch_precomposed_icon);
for (int i = secondary_icons.size() - 1; i >= 0; --i)
- icon_ur_ls.push_back(secondary_icons[i]);
- return icon_ur_ls;
+ icon_urls.push_back(secondary_icons[i]);
+ return icon_urls;
}
Color Document::ThemeColor() const {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698