| 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 fc0e089e7b29b6186a7e28fca4d815ad12371aa8..fae7c955d769aee1670e525cc484c09460eeabc8 100644
|
| --- a/components/variations/net/variations_http_header_provider.cc
|
| +++ b/components/variations/net/variations_http_header_provider.cc
|
| @@ -97,7 +97,7 @@ bool VariationsHttpHeaderProvider::SetDefaultVariationIds(
|
| default_trigger_id_set_.clear();
|
| return false;
|
| }
|
| - bool trigger_id = StartsWithASCII(*it, "t", true);
|
| + bool trigger_id = base::StartsWithASCII(*it, "t", true);
|
| // Remove the "t" prefix if it's there.
|
| std::string entry = trigger_id ? it->substr(1) : *it;
|
|
|
|
|