| Index: components/omnibox/browser/omnibox_field_trial.cc
|
| diff --git a/components/omnibox/browser/omnibox_field_trial.cc b/components/omnibox/browser/omnibox_field_trial.cc
|
| index 26321eaf09c385f5304b9cbec1ead864924ac026..c959a0f5960977f12b4c8cfcbc07a65ba8f4bbee 100644
|
| --- a/components/omnibox/browser/omnibox_field_trial.cc
|
| +++ b/components/omnibox/browser/omnibox_field_trial.cc
|
| @@ -42,6 +42,17 @@ const base::Feature kNewOmniboxAnswerTypes{"NewOmniboxAnswerTypes",
|
| const base::Feature kOmniboxEntitySuggestions{
|
| "OmniboxEntitySuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
| +// Feature used to enable clipboard provider, which provides the user with
|
| +// suggestions of the URL in the user's clipboard (if any) upon omnibox focus.
|
| +const base::Feature kEnableClipboardProvider {
|
| + "OmniboxEnableClipboardProvider",
|
| +#if defined(OS_IOS)
|
| + base::FEATURE_ENABLED_BY_DEFAULT
|
| +#else
|
| + base::FEATURE_DISABLED_BY_DEFAULT
|
| +#endif
|
| +};
|
| +
|
| } // namespace omnibox
|
|
|
| namespace {
|
|
|