| Index: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| index f8fb8000a0e8be50a92f5337ab4720d5c57c2cc0..6282029ac48bee440c74ce31905c6ca486491038 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| @@ -32,7 +32,7 @@ const CGFloat kHintAvailableRatio = 2.0 / 3.0;
|
| // ends.
|
| NSString* TrimAndConvert(const base::string16& s) {
|
| base::string16 output;
|
| - TrimWhitespace(s, TRIM_ALL, &output);
|
| + base::TrimWhitespace(s, base::TRIM_ALL, &output);
|
| return base::SysUTF16ToNSString(output);
|
| }
|
|
|
|
|