| Index: ui/views/corewm/tooltip_controller.cc
|
| diff --git a/ui/views/corewm/tooltip_controller.cc b/ui/views/corewm/tooltip_controller.cc
|
| index 6905cc2b9bc144b711664d1f9820e2b8f65ba522..c5e621bd1e009fda49154ccc50006fed4dcc1146 100644
|
| --- a/ui/views/corewm/tooltip_controller.cc
|
| +++ b/ui/views/corewm/tooltip_controller.cc
|
| @@ -288,7 +288,8 @@ void TooltipController::UpdateIfRequired() {
|
| // If the string consists entirely of whitespace, then don't both showing it
|
| // (an empty tooltip is useless).
|
| base::string16 whitespace_removed_text;
|
| - TrimWhitespace(trimmed_text, TRIM_ALL, &whitespace_removed_text);
|
| + base::TrimWhitespace(trimmed_text, base::TRIM_ALL,
|
| + &whitespace_removed_text);
|
| if (whitespace_removed_text.empty()) {
|
| tooltip_->Hide();
|
| } else {
|
|
|