Tomasz Wiszkowski | d938a111 | 2019-03-06 18:01:57 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_OMNIBOX_COMMON_OMNIBOX_FEATURES_H_ |
| 6 | #define COMPONENTS_OMNIBOX_COMMON_OMNIBOX_FEATURES_H_ |
| 7 | |
| 8 | #include "base/feature_list.h" |
| 9 | |
| 10 | namespace omnibox { |
| 11 | |
| 12 | extern const base::Feature kHideFileUrlScheme; |
| 13 | extern const base::Feature kHideSteadyStateUrlScheme; |
| 14 | extern const base::Feature kHideSteadyStateUrlTrivialSubdomains; |
| 15 | extern const base::Feature kHideSteadyStateUrlPathQueryAndRef; |
| 16 | extern const base::Feature kOneClickUnelide; |
| 17 | extern const base::Feature kSimplifyHttpsIndicator; |
| 18 | extern const base::Feature kOmniboxRichEntitySuggestions; |
| 19 | extern const base::Feature kOmniboxNewAnswerLayout; |
| 20 | extern const base::Feature kOmniboxReverseAnswers; |
| 21 | extern const base::Feature kOmniboxTailSuggestions; |
| 22 | extern const base::Feature kOmniboxTabSwitchSuggestions; |
| 23 | extern const base::Feature kOmniboxReverseTabSwitchLogic; |
| 24 | extern const base::Feature kExperimentalKeywordMode; |
| 25 | extern const base::Feature kOmniboxPedalSuggestions; |
Tommy C. Li | a2c75fb | 2019-04-08 20:22:34 | [diff] [blame^] | 26 | extern const base::Feature kOmniboxSuggestionTransparencyOptions; |
Tomasz Wiszkowski | d938a111 | 2019-03-06 18:01:57 | [diff] [blame] | 27 | extern const base::Feature kEnableClipboardProviderTextSuggestions; |
| 28 | extern const base::Feature kEnableClipboardProviderImageSuggestions; |
| 29 | extern const base::Feature kSearchProviderWarmUpOnFocus; |
| 30 | extern const base::Feature kZeroSuggestRedirectToChrome; |
| 31 | extern const base::Feature kDisplayTitleForCurrentUrl; |
| 32 | extern const base::Feature kQueryInOmnibox; |
| 33 | extern const base::Feature kUIExperimentMaxAutocompleteMatches; |
| 34 | extern const base::Feature kUIExperimentShowSuggestionFavicons; |
| 35 | extern const base::Feature kUIExperimentSwapTitleAndUrl; |
| 36 | extern const base::Feature kUIExperimentVerticalMargin; |
| 37 | extern const base::Feature kUIExperimentBlueSearchLoopAndSearchQuery; |
| 38 | extern const base::Feature kUIExperimentBlueTitlesAndGrayUrlsOnPageSuggestions; |
| 39 | extern const base::Feature kUIExperimentBlueTitlesOnPageSuggestions; |
| 40 | extern const base::Feature kUIExperimentShowSuffixOnAllSearchSuggestions; |
| 41 | extern const base::Feature kUIExperimentBoldUserTextOnSearchSuggestions; |
| 42 | extern const base::Feature kUIExperimentWhiteBackgroundOnBlur; |
| 43 | extern const base::Feature kUIExperimentUseGenericSearchEngineIcon; |
| 44 | extern const base::Feature kUIExperimentUnboldSuggestionText; |
| 45 | extern const base::Feature kSpeculativeServiceWorkerStartOnQueryInput; |
| 46 | extern const base::Feature kDocumentProvider; |
| 47 | extern const base::Feature kDedupeGoogleDriveURLs; |
| 48 | extern const base::Feature kOmniboxPopupShortcutIconsInZeroState; |
| 49 | extern const base::Feature kOmniboxMaterialDesignWeatherIcons; |
Tomasz Wiszkowski | 947f6d0d | 2019-03-15 22:27:25 | [diff] [blame] | 50 | extern const base::Feature kZeroSuggestionsOnNTP; |
Tomasz Wiszkowski | d938a111 | 2019-03-06 18:01:57 | [diff] [blame] | 51 | |
| 52 | } // namespace omnibox |
| 53 | |
| 54 | #endif // COMPONENTS_OMNIBOX_COMMON_OMNIBOX_FEATURES_H_ |