| Index: chrome/browser/history/in_memory_url_index_types.cc
|
| diff --git a/chrome/browser/history/in_memory_url_index_types.cc b/chrome/browser/history/in_memory_url_index_types.cc
|
| index ed661fe488bce8bfe5ee89c113d6d6c9b7712306..f219047e2c75f260325702c126e745ba8f438565 100644
|
| --- a/chrome/browser/history/in_memory_url_index_types.cc
|
| +++ b/chrome/browser/history/in_memory_url_index_types.cc
|
| @@ -144,9 +144,9 @@ String16Vector String16VectorFromString16(
|
| size_t initial_whitespace = 0;
|
| if (break_on_space) {
|
| base::string16 trimmed_word;
|
| - TrimWhitespace(word, TRIM_LEADING, &trimmed_word);
|
| + base::TrimWhitespace(word, base::TRIM_LEADING, &trimmed_word);
|
| initial_whitespace = word.length() - trimmed_word.length();
|
| - TrimWhitespace(trimmed_word, TRIM_TRAILING, &word);
|
| + base::TrimWhitespace(trimmed_word, base::TRIM_TRAILING, &word);
|
| }
|
| if (word.empty())
|
| continue;
|
|
|