[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{