Commit 3b71610c authored by Tomasz Wiszkowski's avatar Tomasz Wiszkowski Committed by Commit Bot

Disable Instant Extended limit by default for Android.

This change effectively increases number of search results
on Android devices from default (3).

Bug: 964049
Change-Id: I46887f88e3f76801d24f7dfdf928397e6a3ae66f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2132858Reviewed-by: default avatarTommy Li <tommycli@chromium.org>
Commit-Queue: Ender <ender@google.com>
Cr-Commit-Position: refs/heads/master@{#755543}
parent 8fb12cf2
...@@ -199,7 +199,13 @@ const base::Feature kAutocompleteTitles{"OmniboxAutocompleteTitles", ...@@ -199,7 +199,13 @@ const base::Feature kAutocompleteTitles{"OmniboxAutocompleteTitles",
// Returns whether IsInstantExtendedAPIEnabled should be ignored when deciding // Returns whether IsInstantExtendedAPIEnabled should be ignored when deciding
// the number of Google-provided search suggestions. // the number of Google-provided search suggestions.
const base::Feature kOmniboxDisableInstantExtendedLimit{ const base::Feature kOmniboxDisableInstantExtendedLimit{
"OmniboxDisableInstantExtendedLimit", base::FEATURE_DISABLED_BY_DEFAULT}; "OmniboxDisableInstantExtendedLimit",
#if defined(OS_ANDROID)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
};
// Show the search engine logo in the omnibox on Android (desktop already does // Show the search engine logo in the omnibox on Android (desktop already does
// this). // this).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment