Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: components/omnibox/browser/omnibox_field_trial.cc

Issue 2832263002: Clipboard Android - Store and Read Last Modified Time from Prefs (Closed)
Patch Set: restore guard Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 378027ff0bc2748b7e25fac1086ed2b30034d053..6524eb3d4ed52ad79a81e25bb102329fd5fd54e6 100644
--- a/components/omnibox/browser/omnibox_field_trial.cc
+++ b/components/omnibox/browser/omnibox_field_trial.cc
@@ -43,13 +43,14 @@ const base::Feature kOmniboxEntitySuggestions{
// 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
+const base::Feature kEnableClipboardProvider{
+ "OmniboxEnableClipboardProvider",
+ // TODO(mpearson): revert this before submitting.
+ //#if defined(OS_IOS)
+ base::FEATURE_ENABLED_BY_DEFAULT
+ //#else
+ // base::FEATURE_DISABLED_BY_DEFAULT
+ //#endif
};
// Feature to enable the search provider to send a request to the suggest

Powered by Google App Engine
This is Rietveld 408576698