diff options
-rw-r--r-- | chrome/browser/autocomplete/history_provider.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/autocomplete/history_provider.cc b/chrome/browser/autocomplete/history_provider.cc index d4df1d9..475c804 100644 --- a/chrome/browser/autocomplete/history_provider.cc +++ b/chrome/browser/autocomplete/history_provider.cc @@ -134,12 +134,6 @@ bool HistoryProvider::FixupUserInput(AutocompleteInput* input) { url_parse::Parsed parts; URLFixerUpper::SegmentURL(output, &parts); - // TODO: This function does not take into account the cursor position while - // running various normalizations, including a call to FixupURL(). In order - // to make it work properly, we need to ensure that all logic above is - // cursor-aware and offsets the input cursor accordingly. - // For now we simply pretend that the cursor was not set at all. - // See http://crbug/163932 for more details. input->UpdateText(output, string16::npos, parts); return !output.empty(); } |