blob: 3a66e5ffefaf41314c6f63ace04166dd6e6df931 [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#include "components/omnibox/common/omnibox_features.h"
6
manukc32a8eff2019-07-02 15:48:307#include "build/build_config.h"
8
Tomasz Wiszkowskid938a1112019-03-06 18:01:579namespace omnibox {
10
manuk06717f92020-05-29 15:38:4711const auto enabled_by_default_desktop_only =
12#if defined(OS_ANDROID) || defined(OS_IOS)
13 base::FEATURE_DISABLED_BY_DEFAULT
14#else
15 base::FEATURE_ENABLED_BY_DEFAULT
16#endif
17 ;
18
Tomasz Wiszkowski8a0e0dc42020-02-19 00:06:3719// Allows Omnibox to dynamically adjust number of offered suggestions to fill in
20// the space between Omnibox an the soft keyboard. The number of suggestions
21// shown will be no less than minimum for the platform (eg. 5 for Android).
22const base::Feature kAdaptiveSuggestionsCount{
23 "OmniboxAdaptiveSuggestionsCount", base::FEATURE_DISABLED_BY_DEFAULT};
24
Tomasz Wiszkowskid938a1112019-03-06 18:01:5725// Feature used to hide the scheme from steady state URLs displayed in the
26// toolbar. It is restored during editing.
manuk06717f92020-05-29 15:38:4727const base::Feature kHideFileUrlScheme{
28 "OmniboxUIExperimentHideFileUrlScheme",
29 // Android and iOS don't have the File security chip, and therefore still
30 // need to show the file scheme.
31 enabled_by_default_desktop_only};
Tomasz Wiszkowskid938a1112019-03-06 18:01:5732
33// Feature used to hide the scheme from steady state URLs displayed in the
34// toolbar. It is restored during editing.
Tommy C. Li7514ba82019-06-25 19:43:5335const base::Feature kHideSteadyStateUrlScheme{
36 "OmniboxUIExperimentHideSteadyStateUrlScheme",
37 base::FEATURE_ENABLED_BY_DEFAULT};
Tomasz Wiszkowskid938a1112019-03-06 18:01:5738
39// Feature used to hide trivial subdomains from steady state URLs displayed in
40// the toolbar. It is restored during editing.
Tommy C. Li7514ba82019-06-25 19:43:5341const base::Feature kHideSteadyStateUrlTrivialSubdomains{
42 "OmniboxUIExperimentHideSteadyStateUrlTrivialSubdomains",
43 base::FEATURE_ENABLED_BY_DEFAULT};
Tomasz Wiszkowskid938a1112019-03-06 18:01:5744
manukaddd3c42019-04-09 21:20:5945// Feature used to enable local entity suggestions. Similar to rich entities but
46// but location specific. E.g., typing 'starbucks near' could display the local
47// entity suggestion 'starbucks near disneyland \n starbucks * Anaheim, CA'.
48const base::Feature kOmniboxLocalEntitySuggestions{
49 "OmniboxLocalEntitySuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
50
Tomasz Wiszkowskid938a1112019-03-06 18:01:5751// Feature used to enable swapping the rows on answers.
52const base::Feature kOmniboxReverseAnswers{"OmniboxReverseAnswers",
53 base::FEATURE_DISABLED_BY_DEFAULT};
54
Kevin Bailey7d918b92019-05-02 16:00:1455// Feature used to enable matching short words to bookmarks for suggestions.
56const base::Feature kOmniboxShortBookmarkSuggestions{
57 "OmniboxShortBookmarkSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
58
Tomasz Wiszkowskid938a1112019-03-06 18:01:5759// Feature used to force on the experiment of transmission of tail suggestions
60// from GWS to this client, currently testing for desktop.
61const base::Feature kOmniboxTailSuggestions{
62 "OmniboxTailSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
63
Kevin Bailey37bbf1d2019-08-21 19:23:5564// Feature that enables the tab-switch suggestions corresponding to an open
65// tab, for a button or dedicated suggestion. Enabled by default on Desktop
66// and iOS.
Tomasz Wiszkowskid938a1112019-03-06 18:01:5767const base::Feature kOmniboxTabSwitchSuggestions{
68 "OmniboxTabSwitchSuggestions",
Stepan Khapuginb09801662019-05-07 10:17:0469#if defined(OS_ANDROID)
Tomasz Wiszkowskid938a1112019-03-06 18:01:5770 base::FEATURE_DISABLED_BY_DEFAULT
71#else
72 base::FEATURE_ENABLED_BY_DEFAULT
73#endif
74};
75
Kevin Bailey37bbf1d2019-08-21 19:23:5576// Feature that enables tab-switch suggestions in their own row.
77const base::Feature kOmniboxTabSwitchSuggestionsDedicatedRow{
78 "OmniboxTabSwitchSuggestionsDedicatedRow",
79 base::FEATURE_DISABLED_BY_DEFAULT};
80
Tomasz Wiszkowskid938a1112019-03-06 18:01:5781// Feature used to enable various experiments on keyword mode, UI and
82// suggestions.
83const base::Feature kExperimentalKeywordMode{"OmniboxExperimentalKeywordMode",
84 base::FEATURE_DISABLED_BY_DEFAULT};
85
86// Feature used to enable Pedal suggestions.
87const base::Feature kOmniboxPedalSuggestions{"OmniboxPedalSuggestions",
88 base::FEATURE_DISABLED_BY_DEFAULT};
89
Tomasz Wiszkowskid938a1112019-03-06 18:01:5790// Feature to enable clipboard provider to suggest searching for copied images.
91const base::Feature kEnableClipboardProviderImageSuggestions{
Robbie Gibson85cef3182019-07-21 15:10:2992 "OmniboxEnableClipboardProviderImageSuggestions",
93#if defined(OS_IOS)
94 base::FEATURE_ENABLED_BY_DEFAULT
95#else
96 base::FEATURE_DISABLED_BY_DEFAULT
97#endif
98};
Tomasz Wiszkowskid938a1112019-03-06 18:01:5799
100// Feature to enable the search provider to send a request to the suggest
101// server on focus. This allows the suggest server to warm up, by, for
102// example, loading per-user models into memory. Having a per-user model
103// in memory allows the suggest server to respond more quickly with
104// personalized suggestions as the user types.
105const base::Feature kSearchProviderWarmUpOnFocus{
106 "OmniboxWarmUpSearchProviderOnFocus",
107#if defined(OS_IOS)
108 base::FEATURE_DISABLED_BY_DEFAULT
109#else
110 base::FEATURE_ENABLED_BY_DEFAULT
111#endif
112};
113
Tomasz Wiszkowskid938a1112019-03-06 18:01:57114// Feature used to display the title of the current URL match.
115const base::Feature kDisplayTitleForCurrentUrl{
116 "OmniboxDisplayTitleForCurrentUrl",
117#if !defined(OS_IOS)
118 base::FEATURE_ENABLED_BY_DEFAULT
119#else
120 base::FEATURE_DISABLED_BY_DEFAULT
121#endif
122};
123
Tomasz Wiszkowskid938a1112019-03-06 18:01:57124// Feature used to always swap the title and URL.
125const base::Feature kUIExperimentSwapTitleAndUrl{
126 "OmniboxUIExperimentSwapTitleAndUrl",
127#if defined(OS_IOS) || defined(OS_ANDROID)
128 base::FEATURE_DISABLED_BY_DEFAULT
129#else
130 base::FEATURE_ENABLED_BY_DEFAULT
131#endif
132};
133
Tomasz Wiszkowskid938a1112019-03-06 18:01:57134// Feature used to enable speculatively starting a service worker associated
135// with the destination of the default match when the user's input looks like a
136// query.
137const base::Feature kSpeculativeServiceWorkerStartOnQueryInput{
138 "OmniboxSpeculativeServiceWorkerStartOnQueryInput",
139 base::FEATURE_ENABLED_BY_DEFAULT
140};
141
142// Feature used to fetch document suggestions.
143const base::Feature kDocumentProvider{"OmniboxDocumentProvider",
144 base::FEATURE_DISABLED_BY_DEFAULT};
145
manuk4542e232019-09-11 19:27:35146// Feature used to autocomplete bookmark, history, and document suggestions when
147// the user input is a prefix of their titles, as opposed to their URLs.
148const base::Feature kAutocompleteTitles{"OmniboxAutocompleteTitles",
149 base::FEATURE_DISABLED_BY_DEFAULT};
150
Patrick Noland2b4968b2019-06-27 14:50:26151// Returns whether IsInstantExtendedAPIEnabled should be ignored when deciding
152// the number of Google-provided search suggestions.
153const base::Feature kOmniboxDisableInstantExtendedLimit{
Ender0c8b5b42020-05-26 22:52:51154 "OmniboxDisableInstantExtendedLimit",
155#if defined(OS_ANDROID)
156 base::FEATURE_ENABLED_BY_DEFAULT
157#else
158 base::FEATURE_DISABLED_BY_DEFAULT
159#endif
160};
Patrick Noland2b4968b2019-06-27 14:50:26161
Brandon Wylief8dd4e82019-07-11 16:39:57162// Show the search engine logo in the omnibox on Android (desktop already does
163// this).
164const base::Feature kOmniboxSearchEngineLogo{"OmniboxSearchEngineLogo",
165 base::FEATURE_DISABLED_BY_DEFAULT};
166
manukbf3c8ab2019-10-24 16:52:08167// Feature used to allow users to remove suggestions from clipboard.
168const base::Feature kOmniboxRemoveSuggestionsFromClipboard{
Gang Wu8f978362020-05-05 17:53:03169 "OmniboxRemoveSuggestionsFromClipboard",
170#if defined(OS_ANDROID)
171 base::FEATURE_ENABLED_BY_DEFAULT
172#else
173 base::FEATURE_DISABLED_BY_DEFAULT
174#endif
175};
manukbf3c8ab2019-10-24 16:52:08176
manukbf3c8ab2019-10-24 16:52:08177// Feature to debounce drive requests from the document provider.
178const base::Feature kDebounceDocumentProvider{
179 "OmniboxDebounceDocumentProvider", base::FEATURE_DISABLED_BY_DEFAULT};
180
Tommy Li6390ecc2019-09-06 21:08:57181// Preserves the default match against change when providers return results
182// asynchronously. This prevents the default match from changing after the user
183// finishes typing. Without this feature, if the default match is updated right
184// when the user presses Enter, the user may go to a surprising destination.
185const base::Feature kOmniboxPreserveDefaultMatchAgainstAsyncUpdate{
186 "OmniboxPreserveDefaultMatchAgainstAsyncUpdate",
Tommy Li2b9db032020-03-02 22:12:14187 base::FEATURE_ENABLED_BY_DEFAULT};
Tommy Li6390ecc2019-09-06 21:08:57188
manuk7b89f6642019-11-08 19:25:24189// Demotes the relevance scores when comparing suggestions based on the
190// suggestion's |AutocompleteMatchType| and the user's |PageClassification|.
191// This feature's main job is to contain the DemoteByType parameter.
192const base::Feature kOmniboxDemoteByType{"OmniboxDemoteByType",
193 base::FEATURE_DISABLED_BY_DEFAULT};
194
Justin Donnelly477e35e2020-04-02 14:40:00195// A special flag, enabled by default, that can be used to disable all new
196// search features (e.g. zero suggest).
197const base::Feature kNewSearchFeatures{"OmniboxNewSearchFeatures",
198 base::FEATURE_ENABLED_BY_DEFAULT};
199
manuk89d73982020-05-12 01:17:34200// Feature used to cap max zero suggestions shown according to the param
201// OmniboxMaxZeroSuggestMatches. If omitted,
202// OmniboxUIExperimentMaxAutocompleteMatches will be used instead. If present,
203// OmniboxMaxZeroSuggestMatches will override
204// OmniboxUIExperimentMaxAutocompleteMatches when |from_omnibox_focus| is true.
205const base::Feature kMaxZeroSuggestMatches{"OmniboxMaxZeroSuggestMatches",
206 base::FEATURE_DISABLED_BY_DEFAULT};
207
manuk89d73982020-05-12 01:17:34208// Feature used to cap max suggestions shown according to the params
209// UIMaxAutocompleteMatches and UIMaxAutocompleteMatchesByProvider.
210const base::Feature kUIExperimentMaxAutocompleteMatches{
211 "OmniboxUIExperimentMaxAutocompleteMatches",
212 base::FEATURE_DISABLED_BY_DEFAULT};
213
Justin Donnelly444aa062020-05-14 23:27:20214// Feature used to cap the number of URL-type matches shown within the
215// Omnibox. If enabled, the number of URL-type matches is limited (unless
216// there are no more non-URL matches available.) If enabled, there is a
217// companion parameter - OmniboxMaxURLMatches - which specifies the maximum
218// desired number of URL-type matches.
219const bool kOmniboxMaxURLMatchesEnabledByDefault =
220#if defined(OS_IOS) || defined(OS_ANDROID)
221 false;
222#else
223 true;
224#endif
225const base::Feature kOmniboxMaxURLMatches{
226 "OmniboxMaxURLMatches", kOmniboxMaxURLMatchesEnabledByDefault
227 ? base::FEATURE_ENABLED_BY_DEFAULT
228 : base::FEATURE_DISABLED_BY_DEFAULT};
229
Tommy Lib4b3bb5b2020-05-01 02:34:56230// Feature that configures ZeroSuggestProvider using the "ZeroSuggestVariant"
231// per-page-classification parameter.
Tommy Li55784022020-04-28 20:58:18232//
Tommy Lib4b3bb5b2020-05-01 02:34:56233// Generally speaking - do NOT use this for future server-side experiments.
234// Instead, create your a new narrowly scoped base::Feature for each experiment.
235//
236// Because our Field Trial system can only configure this base::Feature in a
237// single study, and does not merge parameters, using this creates conflicts.
Tommy C. Li090105512019-05-16 22:00:56238const base::Feature kOnFocusSuggestions{"OmniboxOnFocusSuggestions",
239 base::FEATURE_ENABLED_BY_DEFAULT};
240
Tommy Li55784022020-04-28 20:58:18241// Enables on-focus suggestions on the Open Web, that are contextual to the
242// current URL. Will only work if user is signed-in and syncing, or is
243// otherwise eligible to send the current page URL to the suggest server.
Tommy Lie0a3a992020-05-29 21:32:05244//
245// There's multiple flags here for multiple backend configurations:
246// - Default (search queries)
247// - On-Content Suggestions
Tommy Li55784022020-04-28 20:58:18248const base::Feature kOnFocusSuggestionsContextualWeb{
249 "OmniboxOnFocusSuggestionsContextualWeb",
250 base::FEATURE_DISABLED_BY_DEFAULT};
Tommy Lie0a3a992020-05-29 21:32:05251const base::Feature kOnFocusSuggestionsContextualWebOnContent{
252 "OmniboxOnFocusSuggestionsContextualWebOnContent",
253 base::FEATURE_DISABLED_BY_DEFAULT};
Tommy Li55784022020-04-28 20:58:18254
Moe Ahmadi31147bc2020-06-02 19:07:56255// Enables Reactive Zero-Prefix Suggestions (rZPS) on the NTP, for the Omnibox
256// and Realbox respectively. Note: enabling this feature merely makes
Tommy Lib4b3bb5b2020-05-01 02:34:56257// ZeroSuggestProvider send the request. There are additional requirements,
Moe Ahmadi31147bc2020-06-02 19:07:56258// like the user being signed-in, and the suggest server having rZPS enabled.
259const base::Feature kReactiveZeroSuggestionsOnNTPOmnibox{
260 "OmniboxReactiveZeroSuggestionsOnNTPOmnibox",
Tommy Lib4b3bb5b2020-05-01 02:34:56261 base::FEATURE_DISABLED_BY_DEFAULT};
Moe Ahmadi31147bc2020-06-02 19:07:56262const base::Feature kReactiveZeroSuggestionsOnNTPRealbox{
263 "OmniboxReactiveZeroSuggestionsOnNTPRealbox",
Tommy Lib4b3bb5b2020-05-01 02:34:56264 base::FEATURE_DISABLED_BY_DEFAULT};
265
Tomasz Wiszkowski947f6d0d2019-03-15 22:27:25266// Allow suggestions to be shown to the user on the New Tab Page upon focusing
267// URL bar (the omnibox).
268const base::Feature kZeroSuggestionsOnNTP{"OmniboxZeroSuggestionsOnNTP",
269 base::FEATURE_DISABLED_BY_DEFAULT};
270
Moe Ahmadi4005ec92019-09-09 16:55:53271// Allow suggestions to be shown to the user on the New Tab Page upon focusing
272// the real search box.
273const base::Feature kZeroSuggestionsOnNTPRealbox{
274 "OmniboxZeroSuggestionsOnNTPRealbox", base::FEATURE_DISABLED_BY_DEFAULT};
275
Tommy Li1d03b9bf2019-09-23 23:46:34276// Allow on-focus query refinements to be shown on the default SERP.
277const base::Feature kZeroSuggestionsOnSERP{"OmniboxZeroSuggestionsOnSERP",
278 base::FEATURE_ENABLED_BY_DEFAULT};
279
Ce Chenc8d803a2020-04-27 09:31:33280// Features to provide non personalized head search suggestion from a compact
281// on device model. More specifically, feature name with suffix Incognito /
282// NonIncognito will only controls behaviors under incognito / non-incognito
283// mode respectively.
284const base::Feature kOnDeviceHeadProviderIncognito{
285 "OmniboxOnDeviceHeadProviderIncognito", base::FEATURE_DISABLED_BY_DEFAULT};
286const base::Feature kOnDeviceHeadProviderNonIncognito{
287 "OmniboxOnDeviceHeadProviderNonIncognito",
288 base::FEATURE_DISABLED_BY_DEFAULT};
289
Justin Donnellyf2703482019-10-24 21:42:15290// If enabled, changes the way Google-provided search suggestions are scored by
291// the backend. Note that this Feature is only used for triggering a server-
292// side experiment config that will send experiment IDs to the backend. It is
293// not referred to in any of the Chromium code.
294const base::Feature kOmniboxExperimentalSuggestScoring{
295 "OmniboxExperimentalSuggestScoring", base::FEATURE_DISABLED_BY_DEFAULT};
296
manukh3bb80c92020-01-22 00:19:46297// If disabled, terms with no wordstart matches disqualify the suggestion unless
298// they occur in the URL host. If enabled, terms with no wordstart matches are
299// allowed but not scored. E.g., both inputs 'java script' and 'java cript' will
300// match a suggestion titled 'javascript' and score equivalently.
manukh5ff0f582020-01-14 03:54:13301const base::Feature kHistoryQuickProviderAllowButDoNotScoreMidwordTerms{
302 "OmniboxHistoryQuickProviderAllowButDoNotScoreMidwordTerms",
manuk06717f92020-05-29 15:38:47303 enabled_by_default_desktop_only};
manukh5ff0f582020-01-14 03:54:13304
manukh3bb80c92020-01-22 00:19:46305// If disabled, midword matches are ignored except in the URL host, and input
306// terms with no wordstart matches are scored 0, resulting in an overall score
307// of 0. If enabled, midword matches are allowed and scored when they begin
308// immediately after the previous match ends. E.g. 'java script' will match a
309// suggestion titled 'javascript' but the input 'java cript' won't.
manukh5ff0f582020-01-14 03:54:13310const base::Feature kHistoryQuickProviderAllowMidwordContinuations{
311 "OmniboxHistoryQuickProviderAllowMidwordContinuations",
manuk06717f92020-05-29 15:38:47312 enabled_by_default_desktop_only};
manukh5ff0f582020-01-14 03:54:13313
Tomasz Wiszkowski70fb35f2020-02-27 00:39:19314// If enabled, shows slightly more compact suggestions, allowing the
315// kAdaptiveSuggestionsCount feature to fit more suggestions on screen.
316const base::Feature kCompactSuggestions{"OmniboxCompactSuggestions",
317 base::FEATURE_DISABLED_BY_DEFAULT};
318
Tomasz Wiszkowski70fb35f2020-02-27 00:39:19319// If enabled, defers keyboard popup when user highlights the omnibox until
320// the user taps the Omnibox again.
321extern const base::Feature kDeferredKeyboardPopup{
322 "OmniboxDeferredKeyboardPopup", base::FEATURE_DISABLED_BY_DEFAULT};
323
manuk695f9d4532020-03-18 19:22:08324// If enabled, expands autocompletion to possibly (depending on params) include
325// suggestion titles and non-prefixes as opposed to be restricted to URL
326// prefixes. Will also adjust the location bar UI and omnibox text selection to
327// accommodate the autocompletions.
328const base::Feature kRichAutocompletion{"OmniboxRichAutocompletion",
329 base::FEATURE_DISABLED_BY_DEFAULT};
330
Kevin Bailey104e44492019-10-31 16:42:32331// Feature that enables not counting submatches towards the maximum
332// suggestion limit.
333const base::Feature kOmniboxLooseMaxLimitOnDedicatedRows{
334 "OmniboxLooseMaxLimitOnDedicatedRows", base::FEATURE_DISABLED_BY_DEFAULT};
335
Filip Gorski05279842020-06-12 12:49:02336// Feature that enables Search Ready Omnibox in invognito.
337const base::Feature kOmniboxSearchReadyIncognito{
338 "OmniboxSearchReadyIncognito", base::FEATURE_DISABLED_BY_DEFAULT};
339
Orin Jaworskifc174722020-01-29 00:32:22340// Feature that puts a single row of buttons on suggestions with actionable
341// elements like keywords, tab-switch buttons, and Pedals.
342const base::Feature kOmniboxSuggestionButtonRow{
343 "OmniboxSuggestionButtonRow", base::FEATURE_DISABLED_BY_DEFAULT};
344
Filip Gorski927709ea2020-04-30 15:58:37345// Enables using an Android RecyclerView to render the suggestions dropdown
346// instead of a ListView.
347const base::Feature kOmniboxSuggestionsRecyclerView{
348 "OmniboxSuggestionsRecyclerView", base::FEATURE_DISABLED_BY_DEFAULT};
349
Tomasz Wiszkowski5ec4f532020-05-19 21:28:10350// Allows long Omnibox suggestions to wrap around to next line.
351const base::Feature kOmniboxSuggestionsWrapAround{
352 "OmniboxSuggestionsWrapAround", base::FEATURE_DISABLED_BY_DEFAULT};
353
Tommy Li1f1fc4a2020-01-31 21:02:07354// If enabled, uses WebUI to render the omnibox suggestions popup, similar to
355// how the NTP "fakebox" is implemented.
356const base::Feature kWebUIOmniboxPopup{"WebUIOmniboxPopup",
357 base::FEATURE_DISABLED_BY_DEFAULT};
358
Brandon Wylie1299ff82020-01-23 02:13:37359// When enabled, use Assistant for omnibox voice query recognition instead of
360// Android's built-in voice recognition service. Only works on Android.
361const base::Feature kOmniboxAssistantVoiceSearch{
362 "OmniboxAssistantVoiceSearch", base::FEATURE_DISABLED_BY_DEFAULT};
363
Livvie Lin30a9f9d2020-03-17 19:45:19364// When enabled, provides an omnibox context menu option that prevents URL
365// elisions.
366const base::Feature kOmniboxContextMenuShowFullUrls{
367 "OmniboxContextMenuShowFullUrls", base::FEATURE_DISABLED_BY_DEFAULT};
368
Emily Stark4bca290ac2020-06-29 21:02:30369// Feature used to reveal the path, query and ref from steady state URLs
370// on hover.
371const base::Feature kRevealSteadyStateUrlPathQueryAndRefOnHover{
372 "OmniboxUIExperimentRevealSteadyStateUrlPathQueryAndRefOnHover",
373 base::FEATURE_DISABLED_BY_DEFAULT};
374
375// Feature used to hide the path, query and ref from steady state URLs
376// on interaction with the page.
377const base::Feature kHideSteadyStateUrlPathQueryAndRefOnInteraction{
378 "OmniboxUIExperimentHideSteadyStateUrlPathQueryAndRefOnInteraction",
379 base::FEATURE_DISABLED_BY_DEFAULT};
380
381// Feature used to elide not just the path, query, and ref from steady state
382// URLs, but also subdomains beyond the registrable domain. Has no effect unless
383// kRevealSteadyStateUrlPathQueryAndRefOnHover and/or
384// kHideSteadyStateUrlPathQueryAndRefOnInteraction are enabled.
385const base::Feature kElideToRegistrableDomain{
386 "OmniboxUIExperimentElideToRegistrableDomain",
387 base::FEATURE_DISABLED_BY_DEFAULT};
388
Tomasz Wiszkowskid938a1112019-03-06 18:01:57389} // namespace omnibox