Index: chrome/browser/autocomplete/autocomplete_input.cc |
diff --git a/chrome/browser/autocomplete/autocomplete_input.cc b/chrome/browser/autocomplete/autocomplete_input.cc |
index d81e728a7586fb062021d194bd3a84985ec62e64..adbdb3bde0fdb2325ef97dbd1dec545991ef80dd 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; |