| Index: chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm b/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
|
| index fa0df424300ce9727d9f1c2b1616c0de98419e67..4a5a333350871d81a608dfaf340dce77392aefff 100644
|
| --- a/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
|
| +++ b/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
|
| @@ -273,8 +273,8 @@ void OmniboxViewMac::SetForcedQuery() {
|
| // We need to do this first, else |SetSelectedRange()| won't work.
|
| FocusLocation(true);
|
|
|
| - const string16 current_text(GetText());
|
| - const size_t start = current_text.find_first_not_of(kWhitespaceUTF16);
|
| + const base::string16 current_text(GetText());
|
| + const size_t start = current_text.find_first_not_of(base::kWhitespaceUTF16);
|
| if (start == string16::npos || (current_text[start] != '?')) {
|
| SetUserText(ASCIIToUTF16("?"));
|
| } else {
|
|
|