| Index: net/http/http_util.cc
 | 
| diff --git a/net/http/http_util.cc b/net/http/http_util.cc
 | 
| index fa40ed72ffe935d6f7d22decf43765cd5d868a2f..b3819c21f5d5aa8d156b6de353ba8df65c5fc521 100644
 | 
| --- a/net/http/http_util.cc
 | 
| +++ b/net/http/http_util.cc
 | 
| @@ -353,8 +353,8 @@ const char* const kForbiddenHeaderFields[] = {
 | 
|  // static
 | 
|  bool HttpUtil::IsSafeHeader(const std::string& name) {
 | 
|    std::string lower_name(base::StringToLowerASCII(name));
 | 
| -  if (StartsWithASCII(lower_name, "proxy-", true) ||
 | 
| -      StartsWithASCII(lower_name, "sec-", true))
 | 
| +  if (base::StartsWithASCII(lower_name, "proxy-", true) ||
 | 
| +      base::StartsWithASCII(lower_name, "sec-", true))
 | 
|      return false;
 | 
|    for (size_t i = 0; i < arraysize(kForbiddenHeaderFields); ++i) {
 | 
|      if (lower_name == kForbiddenHeaderFields[i])
 | 
| 
 |