commit | 8f9783602907660db51a3379e1678de1fd6d2aa4 | [log] [tgz] |
---|---|---|
author | Gang Wu <[email protected]> | Tue May 05 17:53:03 2020 |
committer | Commit Bot <[email protected]> | Tue May 05 17:53:03 2020 |
tree | 2b6b5c8854dd79a3ad355b50bf1670f98ade98ed | |
parent | 5496c530573fc343730dc2ddf5fa69290907bfa7 [diff] [blame] |
[Omnibox] Enable Omnibox clipboard suggestions removal by default The reason is http://go/cl/309481467 Bug: 977402 Change-Id: I807a687b07f5f3f2a4633875e2fc7e582d43ce6d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2176281 Reviewed-by: Ender <[email protected]> Reviewed-by: Justin Donnelly <[email protected]> Reviewed-by: Robbie Gibson <[email protected]> Reviewed-by: Robert Kaplow <[email protected]> Commit-Queue: Gang Wu <[email protected]> Cr-Commit-Position: refs/heads/master@{#765636}
diff --git a/components/omnibox/common/omnibox_features.cc b/components/omnibox/common/omnibox_features.cc index effa45b..1120acb 100644 --- a/components/omnibox/common/omnibox_features.cc +++ b/components/omnibox/common/omnibox_features.cc
@@ -197,7 +197,13 @@ // Feature used to allow users to remove suggestions from clipboard. const base::Feature kOmniboxRemoveSuggestionsFromClipboard{ - "OmniboxRemoveSuggestionsFromClipboard", base::FEATURE_DISABLED_BY_DEFAULT}; + "OmniboxRemoveSuggestionsFromClipboard", +#if defined(OS_ANDROID) + base::FEATURE_ENABLED_BY_DEFAULT +#else + base::FEATURE_DISABLED_BY_DEFAULT +#endif +}; // Feature to debounce drive requests from the document provider. const base::Feature kDebounceDocumentProvider{