| Index: components/variations/net/variations_http_header_provider.cc
|
| diff --git a/components/variations/net/variations_http_header_provider.cc b/components/variations/net/variations_http_header_provider.cc
|
| index fae7c955d769aee1670e525cc484c09460eeabc8..00aa5d6261ef886f08d78bb7b183ce910f2f1d6f 100644
|
| --- a/components/variations/net/variations_http_header_provider.cc
|
| +++ b/components/variations/net/variations_http_header_provider.cc
|
| @@ -280,7 +280,7 @@ bool VariationsHttpHeaderProvider::ShouldAppendHeaders(const GURL& url) {
|
| // is very straight forward.
|
| const std::string host = url.host();
|
| for (size_t i = 0; i < arraysize(kSuffixesToSetHeadersFor); ++i) {
|
| - if (EndsWith(host, kSuffixesToSetHeadersFor[i], false))
|
| + if (base::EndsWith(host, kSuffixesToSetHeadersFor[i], false))
|
| return true;
|
| }
|
|
|
|
|