blob: 9711a32d62208786a0ae69742645d32e1acb5c3d [file] [log] [blame]
Tomasz Wiszkowskid938a1112019-03-06 18:01:571// 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
10namespace omnibox {
11
Dan Beamc6f0d222019-04-26 00:38:3112// TODO(dbeam): why is this list not sorted alphabetically?
Tomasz Wiszkowskid938a1112019-03-06 18:01:5713extern const base::Feature kHideFileUrlScheme;
14extern const base::Feature kHideSteadyStateUrlScheme;
15extern const base::Feature kHideSteadyStateUrlTrivialSubdomains;
16extern const base::Feature kHideSteadyStateUrlPathQueryAndRef;
17extern const base::Feature kOneClickUnelide;
18extern const base::Feature kSimplifyHttpsIndicator;
manukaddd3c42019-04-09 21:20:5919extern const base::Feature kOmniboxLocalEntitySuggestions;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5720extern const base::Feature kOmniboxRichEntitySuggestions;
21extern const base::Feature kOmniboxNewAnswerLayout;
22extern const base::Feature kOmniboxReverseAnswers;
Kevin Bailey7d918b92019-05-02 16:00:1423extern const base::Feature kOmniboxShortBookmarkSuggestions;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5724extern const base::Feature kOmniboxTailSuggestions;
25extern const base::Feature kOmniboxTabSwitchSuggestions;
26extern const base::Feature kOmniboxReverseTabSwitchLogic;
27extern const base::Feature kExperimentalKeywordMode;
28extern const base::Feature kOmniboxPedalSuggestions;
Tommy C. Lia2c75fb2019-04-08 20:22:3429extern const base::Feature kOmniboxSuggestionTransparencyOptions;
Tommy C. Lie57096e92019-04-23 21:18:5530extern const base::Feature kOmniboxUICuesForSearchHistoryMatches;
Tommy C. Li7af8664b2019-04-24 18:10:2931extern const base::Feature kOmniboxAlternateMatchDescriptionSeparator;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5732extern const base::Feature kEnableClipboardProviderTextSuggestions;
33extern const base::Feature kEnableClipboardProviderImageSuggestions;
34extern const base::Feature kSearchProviderWarmUpOnFocus;
35extern const base::Feature kZeroSuggestRedirectToChrome;
36extern const base::Feature kDisplayTitleForCurrentUrl;
37extern const base::Feature kQueryInOmnibox;
38extern const base::Feature kUIExperimentMaxAutocompleteMatches;
39extern const base::Feature kUIExperimentShowSuggestionFavicons;
40extern const base::Feature kUIExperimentSwapTitleAndUrl;
41extern const base::Feature kUIExperimentVerticalMargin;
Tommy C. Lie35fb6b2019-04-30 16:29:5442extern const base::Feature kUIExperimentVerticalMarginLimitToNonTouchOnly;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5743extern const base::Feature kUIExperimentBlueSearchLoopAndSearchQuery;
44extern const base::Feature kUIExperimentBlueTitlesAndGrayUrlsOnPageSuggestions;
45extern const base::Feature kUIExperimentBlueTitlesOnPageSuggestions;
46extern const base::Feature kUIExperimentShowSuffixOnAllSearchSuggestions;
47extern const base::Feature kUIExperimentBoldUserTextOnSearchSuggestions;
48extern const base::Feature kUIExperimentWhiteBackgroundOnBlur;
49extern const base::Feature kUIExperimentUseGenericSearchEngineIcon;
50extern const base::Feature kUIExperimentUnboldSuggestionText;
Dan Beamc6f0d222019-04-26 00:38:3151extern const base::Feature kUIExperimentShowPlaceholderWhenCaretShowing;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5752extern const base::Feature kSpeculativeServiceWorkerStartOnQueryInput;
53extern const base::Feature kDocumentProvider;
54extern const base::Feature kDedupeGoogleDriveURLs;
55extern const base::Feature kOmniboxPopupShortcutIconsInZeroState;
56extern const base::Feature kOmniboxMaterialDesignWeatherIcons;
Tomasz Wiszkowski947f6d0d2019-03-15 22:27:2557extern const base::Feature kZeroSuggestionsOnNTP;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5758
59} // namespace omnibox
60
61#endif // COMPONENTS_OMNIBOX_COMMON_OMNIBOX_FEATURES_H_