| Index: net/filter/filter.cc
|
| diff --git a/net/filter/filter.cc b/net/filter/filter.cc
|
| index b49aa34eb11ff34bb5e48682de7411866bae7730..4df0191df79d5fa9f4bb0e5f5ef1649b76c52004 100644
|
| --- a/net/filter/filter.cc
|
| +++ b/net/filter/filter.cc
|
| @@ -184,12 +184,12 @@ bool Filter::FlushStreamBuffer(int stream_data_len) {
|
| Filter::FilterType Filter::ConvertEncodingToType(
|
| const std::string& filter_type) {
|
| FilterType type_id;
|
| - if (LowerCaseEqualsASCII(filter_type, kDeflate)) {
|
| + if (base::LowerCaseEqualsASCII(filter_type, kDeflate)) {
|
| type_id = FILTER_TYPE_DEFLATE;
|
| - } else if (LowerCaseEqualsASCII(filter_type, kGZip) ||
|
| - LowerCaseEqualsASCII(filter_type, kXGZip)) {
|
| + } else if (base::LowerCaseEqualsASCII(filter_type, kGZip) ||
|
| + base::LowerCaseEqualsASCII(filter_type, kXGZip)) {
|
| type_id = FILTER_TYPE_GZIP;
|
| - } else if (LowerCaseEqualsASCII(filter_type, kSdch)) {
|
| + } else if (base::LowerCaseEqualsASCII(filter_type, kSdch)) {
|
| type_id = FILTER_TYPE_SDCH;
|
| } else {
|
| // Note we also consider "identity" and "uncompressed" UNSUPPORTED as
|
|
|