Index: components/omnibox/browser/history_quick_provider.cc |
diff --git a/components/omnibox/browser/history_quick_provider.cc b/components/omnibox/browser/history_quick_provider.cc |
index bf7db5ce95da22ee63ba407bc605928b8117abde..2f7857ede9f6ec86ce44a031c1552b686d8957a7 100644 |
--- a/components/omnibox/browser/history_quick_provider.cc |
+++ b/components/omnibox/browser/history_quick_provider.cc |
@@ -49,9 +49,8 @@ void HistoryQuickProvider::Start(const AutocompleteInput& input, |
if (disabled_ || input.from_omnibox_focus()) |
return; |
- // Don't bother with INVALID and FORCED_QUERY. |
- if ((input.type() == metrics::OmniboxInputType::INVALID) || |
- (input.type() == metrics::OmniboxInputType::FORCED_QUERY)) |
+ // Don't bother with INVALID. |
+ if ((input.type() == metrics::OmniboxInputType::INVALID)) |
return; |
autocomplete_input_ = input; |