Index: chrome/browser/autocomplete/search_provider.h |
diff --git a/chrome/browser/autocomplete/search_provider.h b/chrome/browser/autocomplete/search_provider.h |
index 3f9b080a20fc503842a26d42afc77d31239dbd33..676f51b9d543f0569789374c796239ab8145cc08 100644 |
--- a/chrome/browser/autocomplete/search_provider.h |
+++ b/chrome/browser/autocomplete/search_provider.h |
@@ -379,7 +379,8 @@ class SearchProvider : public AutocompleteProvider, |
bool IsTopMatchNavigationInKeywordMode() const; |
bool IsTopMatchScoreTooLow() const; |
bool IsTopMatchSearchWithURLInput() const; |
- bool IsTopMatchNotInlinable() const; |
+ bool IsTopMatchNotAllowedToBeDefaultMatch() const; |
+ bool LacksDefaultMatch() const; |
// Updates |matches_| from the latest results; applies calculated relevances |
// if suggested relevances cause undesriable behavior. Updates |done_|. |
@@ -534,6 +535,10 @@ class SearchProvider : public AutocompleteProvider, |
// If true, no search history query suggestions will be offered. |
bool disable_search_history_; |
+ // True if the omnibox will reorder matches as necessary to make the top |
+ // one something that is allowed to be the default match. |
+ bool omnibox_will_reorder_for_legal_default_match_; |
+ |
DISALLOW_COPY_AND_ASSIGN(SearchProvider); |
}; |