diff options
Diffstat (limited to 'chrome/browser/autocomplete/search_provider.h')
-rw-r--r-- | chrome/browser/autocomplete/search_provider.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/autocomplete/search_provider.h b/chrome/browser/autocomplete/search_provider.h index 59ecc79..f01fdb6 100644 --- a/chrome/browser/autocomplete/search_provider.h +++ b/chrome/browser/autocomplete/search_provider.h @@ -527,6 +527,13 @@ class SearchProvider : public AutocompleteProvider, // Start margin of the omnibox. Used to construct search URLs. int omnibox_start_margin_; + // If true, search history query suggestions will score low enough that + // they will not be inlined. + bool prevent_search_history_inlining_; + + // If true, no search history query suggestions will be offered. + bool disable_search_history_; + DISALLOW_COPY_AND_ASSIGN(SearchProvider); }; |