Index: chrome/browser/autocomplete/autocomplete_input.cc |
diff --git a/chrome/browser/autocomplete/autocomplete_input.cc b/chrome/browser/autocomplete/autocomplete_input.cc |
index af34933a61dbd92e5ad91a88dbb5930805887877..f85b5db900d523bec7319a559182b334016abcc2 100644 |
--- a/chrome/browser/autocomplete/autocomplete_input.cc |
+++ b/chrome/browser/autocomplete/autocomplete_input.cc |
@@ -133,7 +133,7 @@ AutocompleteInput::Type AutocompleteInput::Parse( |
if (first_non_white == base::string16::npos) |
return INVALID; // All whitespace. |
- if (text.at(first_non_white) == L'?') { |
+ if (text[first_non_white] == L'?') { |
// If the first non-whitespace character is a '?', we magically treat this |
// as a query. |
return FORCED_QUERY; |