| Index: components/omnibox/browser/autocomplete_match.cc
|
| diff --git a/components/omnibox/browser/autocomplete_match.cc b/components/omnibox/browser/autocomplete_match.cc
|
| index 5837c8d00f5ccf023a111de12810e34c9798cfe9..b020beb3d008e26584a78d12fdbac490811d4d6f 100644
|
| --- a/components/omnibox/browser/autocomplete_match.cc
|
| +++ b/components/omnibox/browser/autocomplete_match.cc
|
| @@ -497,6 +497,11 @@ url_formatter::FormatUrlTypes AutocompleteMatch::GetFormatTypes(
|
| omnibox::kUIExperimentHideSuggestionUrlScheme)) {
|
| format_types |= url_formatter::kFormatUrlExperimentalOmitHTTPS;
|
| }
|
| +
|
| + if (base::FeatureList::IsEnabled(
|
| + omnibox::kUIExperimentElideSuggestionUrlAfterHost)) {
|
| + format_types |= url_formatter::kFormatUrlExperimentalElideAfterHost;
|
| + }
|
| return format_types;
|
| }
|
|
|
|
|