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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/html/HTMLAnchorElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
index 1abf5d042d02e3e6f349fd464feb9a04f11db773..b9c7b1b58823f7e66e472f461885c38cae188e73 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
@@ -307,10 +307,10 @@ void HTMLAnchorElement::SendPings(const KURL& destination_url) const {
UseCounter::Count(GetDocument(), UseCounter::kHTMLAnchorElementPingAttribute);
- SpaceSplitString ping_ur_ls(ping_value, SpaceSplitString::kShouldNotFoldCase);
- for (unsigned i = 0; i < ping_ur_ls.size(); i++)
+ SpaceSplitString ping_urls(ping_value, SpaceSplitString::kShouldNotFoldCase);
+ for (unsigned i = 0; i < ping_urls.size(); i++)
PingLoader::SendLinkAuditPing(GetDocument().GetFrame(),
- GetDocument().CompleteURL(ping_ur_ls[i]),
+ GetDocument().CompleteURL(ping_urls[i]),
destination_url);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameSerializer.cpp ('k') | third_party/WebKit/Source/core/html/PublicURLManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698