| 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);
|
| }
|
|
|
|
|