Chromium Code Reviews| Index: ash/shell/app_list.cc |
| diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc |
| index bbeda55655e6b346e09f66bd8c694a98b6f29ec1..c3ea36bf48bceebd3fa8dd6574e9e3c2a1e35e13 100644 |
| --- a/ash/shell/app_list.cc |
| +++ b/ash/shell/app_list.cc |
| @@ -287,7 +287,7 @@ class ExampleAppListViewDelegate : public app_list::AppListViewDelegate { |
| virtual void StartSearch() OVERRIDE { |
| base::string16 query; |
| - TrimWhitespace(model_->search_box()->text(), TRIM_ALL, &query); |
| + base::TrimWhitespace(model_->search_box()->text(), base::TRIM_ALL, &query); |
|
viettrungluu
2014/02/28 23:44:14
I suppose it'd be evil to omit the first base:: in
|
| query = base::i18n::ToLower(query); |
| model_->results()->DeleteAll(); |