| Index: chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| index d2539f8e0584349ff82fdd5ecb53e6948835320e..296ff8539afafe0e74ce7c0a44ec16a780a8fe51 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| @@ -494,8 +494,8 @@ void OmniboxViewViews::SetWindowTextAndCaretPos(const string16& text,
|
| }
|
|
|
| void OmniboxViewViews::SetForcedQuery() {
|
| - const string16 current_text(text());
|
| - const size_t start = current_text.find_first_not_of(kWhitespaceUTF16);
|
| + const base::string16 current_text(text());
|
| + const size_t start = current_text.find_first_not_of(base::kWhitespaceUTF16);
|
| if (start == string16::npos || (current_text[start] != '?'))
|
| OmniboxView::SetUserText(ASCIIToUTF16("?"));
|
| else
|
|
|