| Index: content/common/android/address_parser.cc
|
| diff --git a/content/common/android/address_parser.cc b/content/common/android/address_parser.cc
|
| index 30fa304ba4cd7d1219b5c244d1343bd0f953ae3e..55382adc7ad5868e360cafe912604ea574bc7761 100644
|
| --- a/content/common/android/address_parser.cc
|
| +++ b/content/common/android/address_parser.cc
|
| @@ -171,10 +171,12 @@ bool FindAddress(const base::string16::const_iterator& begin,
|
| if (current_word_length == 2 && words.size() > 2) {
|
| const Word& previous_word = words[state_first_word - 1];
|
| if (previous_word.end - previous_word.begin == 2 &&
|
| - LowerCaseEqualsASCII(previous_word.begin, previous_word.end,
|
| - "et") &&
|
| - LowerCaseEqualsASCII(current_word.begin, current_word.end,
|
| - "al"))
|
| + base::LowerCaseEqualsASCII(previous_word.begin,
|
| + previous_word.end,
|
| + "et") &&
|
| + base::LowerCaseEqualsASCII(current_word.begin,
|
| + current_word.end,
|
| + "al"))
|
| break;
|
| }
|
|
|
|
|