Commit bd0ce3bc authored by Mark Pearson's avatar Mark Pearson Committed by Commit Bot

Field Trial Testing Config - Update for Omnibox Experiments

Split the omnibox entry into desktop, android, and iOS.

For each separate target,
add all missing features that are being tested in beta or stable.

The only feature I skipped was entity suggestions, which as I understand
it is being revised / reimplemented, so it's not something that should
be actively tested.  (Indeed, we probably should get rid of the
experiment configs that are currently running with this feature, lest
we end up start running a code path in the wild that isn't yet
finished being revised.)

Change-Id: I3c8826c1d00613242b1ab77f66e22574f6532bb0
Reviewed-on: https://chromium-review.googlesource.com/1000029
Commit-Queue: Mark Pearson <mpearson@chromium.org>
Reviewed-by: default avatarJustin Donnelly <jdonnelly@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550077}
parent 5f98efe5
...@@ -2274,24 +2274,54 @@ ...@@ -2274,24 +2274,54 @@
"OmniboxBundledExperimentV1": [ "OmniboxBundledExperimentV1": [
{ {
"platforms": [ "platforms": [
"android",
"chromeos", "chromeos",
"ios",
"linux", "linux",
"mac", "mac",
"win" "win"
], ],
"experiments": [ "experiments": [
{ {
"name": "UIExperiments", "name": "DesktopExperiments",
"params": { "params": {
"UIVerticalMargin": "8" "UIVerticalMargin": "8"
}, },
"enable_features": [ "enable_features": [
"OmniboxBreakWordsAtUnderscores", "OmniboxBreakWordsAtUnderscores",
"OmniboxDisplayTitleForCurrentUrl",
"OmniboxTailSuggestions",
"OmniboxUIExperimentShowSuggestionFavicons", "OmniboxUIExperimentShowSuggestionFavicons",
"OmniboxUIExperimentSwapTitleAndUrl", "OmniboxUIExperimentSwapTitleAndUrl",
"OmniboxUIExperimentVerticalMargin" "OmniboxUIExperimentVerticalMargin",
"ZeroSuggestRedirectToChrome",
"ZeroSuggestSwapTitleAndUrl"
]
}
]
},
{
"platforms": [
"android"
],
"experiments": [
{
"name": "AndroidExperiments",
"enable_features": [
"OmniboxBreakWordsAtUnderscores",
"OmniboxDisplayTitleForCurrentUrl"
]
}
]
},
{
"platforms": [
"ios"
],
"experiments": [
{
"name": "iOSExperiments",
"enable_features": [
"OmniboxBreakWordsAtUnderscores",
"OmniboxDisplayTitleForCurrentUrl"
] ]
} }
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment