| Index: trunk/src/net/http/http_log_util.cc
|
| ===================================================================
|
| --- trunk/src/net/http/http_log_util.cc (revision 289319)
|
| +++ trunk/src/net/http/http_log_util.cc (working copy)
|
| @@ -41,9 +41,9 @@
|
| std::string::const_iterator* redact_end) {
|
| HttpUtil::ValuesIterator it(header_value.begin(), header_value.end(), ',');
|
| while (it.GetNext()) {
|
| - if (base::LowerCaseEqualsASCII(it.value_begin(),
|
| - it.value_begin() + directive.size(),
|
| - directive.c_str())) {
|
| + if (LowerCaseEqualsASCII(it.value_begin(),
|
| + it.value_begin() + directive.size(),
|
| + directive.c_str())) {
|
| *redact_begin = it.value_begin();
|
| *redact_end = it.value_end();
|
| return;
|
|
|