blob: b05a7e090d617b7a6a6630426b0a40765a45c44e [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
12extern const base::Feature kHideFileUrlScheme;
13extern const base::Feature kHideSteadyStateUrlScheme;
14extern const base::Feature kHideSteadyStateUrlTrivialSubdomains;
15extern const base::Feature kHideSteadyStateUrlPathQueryAndRef;
16extern const base::Feature kOneClickUnelide;
17extern const base::Feature kSimplifyHttpsIndicator;
18extern const base::Feature kOmniboxRichEntitySuggestions;
19extern const base::Feature kOmniboxNewAnswerLayout;
20extern const base::Feature kOmniboxReverseAnswers;
21extern const base::Feature kOmniboxTailSuggestions;
22extern const base::Feature kOmniboxTabSwitchSuggestions;
23extern const base::Feature kOmniboxReverseTabSwitchLogic;
24extern const base::Feature kExperimentalKeywordMode;
25extern const base::Feature kOmniboxPedalSuggestions;
Tommy C. Lia2c75fb2019-04-08 20:22:3426extern const base::Feature kOmniboxSuggestionTransparencyOptions;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5727extern const base::Feature kEnableClipboardProviderTextSuggestions;
28extern const base::Feature kEnableClipboardProviderImageSuggestions;
29extern const base::Feature kSearchProviderWarmUpOnFocus;
30extern const base::Feature kZeroSuggestRedirectToChrome;
31extern const base::Feature kDisplayTitleForCurrentUrl;
32extern const base::Feature kQueryInOmnibox;
33extern const base::Feature kUIExperimentMaxAutocompleteMatches;
34extern const base::Feature kUIExperimentShowSuggestionFavicons;
35extern const base::Feature kUIExperimentSwapTitleAndUrl;
36extern const base::Feature kUIExperimentVerticalMargin;
37extern const base::Feature kUIExperimentBlueSearchLoopAndSearchQuery;
38extern const base::Feature kUIExperimentBlueTitlesAndGrayUrlsOnPageSuggestions;
39extern const base::Feature kUIExperimentBlueTitlesOnPageSuggestions;
40extern const base::Feature kUIExperimentShowSuffixOnAllSearchSuggestions;
41extern const base::Feature kUIExperimentBoldUserTextOnSearchSuggestions;
42extern const base::Feature kUIExperimentWhiteBackgroundOnBlur;
43extern const base::Feature kUIExperimentUseGenericSearchEngineIcon;
44extern const base::Feature kUIExperimentUnboldSuggestionText;
45extern const base::Feature kSpeculativeServiceWorkerStartOnQueryInput;
46extern const base::Feature kDocumentProvider;
47extern const base::Feature kDedupeGoogleDriveURLs;
48extern const base::Feature kOmniboxPopupShortcutIconsInZeroState;
49extern const base::Feature kOmniboxMaterialDesignWeatherIcons;
Tomasz Wiszkowski947f6d0d2019-03-15 22:27:2550extern const base::Feature kZeroSuggestionsOnNTP;
Tomasz Wiszkowskid938a1112019-03-06 18:01:5751
52} // namespace omnibox
53
54#endif // COMPONENTS_OMNIBOX_COMMON_OMNIBOX_FEATURES_H_