Commit 0425e2ac authored by Mark Pearson's avatar Mark Pearson Committed by Commit Bot

Omnibox - Android - Display the Title of the Current URL in Zero Suggest

This enables the flag by default on Android.

Bug: 787940
Change-Id: I550d6d22d629c0bcb62dacefaf32b5d8b24ced57
Reviewed-on: https://chromium-review.googlesource.com/1054170Reviewed-by: default avatarJustin Donnelly <jdonnelly@chromium.org>
Commit-Queue: Mark Pearson <mpearson@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557622}
parent 7b1eeac7
...@@ -85,7 +85,13 @@ const base::Feature kZeroSuggestSwapTitleAndUrl{ ...@@ -85,7 +85,13 @@ const base::Feature kZeroSuggestSwapTitleAndUrl{
// Feature used to display the title of the current URL match. // Feature used to display the title of the current URL match.
const base::Feature kDisplayTitleForCurrentUrl{ const base::Feature kDisplayTitleForCurrentUrl{
"OmniboxDisplayTitleForCurrentUrl", base::FEATURE_DISABLED_BY_DEFAULT}; "OmniboxDisplayTitleForCurrentUrl",
#if defined(OS_ANDROID)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
};
// Feature used for the max autocomplete matches UI experiment. // Feature used for the max autocomplete matches UI experiment.
const base::Feature kUIExperimentMaxAutocompleteMatches{ const base::Feature kUIExperimentMaxAutocompleteMatches{
......
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