| Index: components/omnibox/omnibox_field_trial.cc
|
| diff --git a/components/omnibox/omnibox_field_trial.cc b/components/omnibox/omnibox_field_trial.cc
|
| index 96adb803263731c2b3bc50e7b913c7a362dee699..eec1286f1a962d20f4b47c1b323a5c1edbbeb4ed 100644
|
| --- a/components/omnibox/omnibox_field_trial.cc
|
| +++ b/components/omnibox/omnibox_field_trial.cc
|
| @@ -313,15 +313,7 @@ bool OmniboxFieldTrial::DisableInlining() {
|
| }
|
|
|
| bool OmniboxFieldTrial::EnableAnswersInSuggest() {
|
| - const CommandLine* cl = CommandLine::ForCurrentProcess();
|
| - if (cl->HasSwitch(switches::kDisableAnswersInSuggest))
|
| - return false;
|
| - if (cl->HasSwitch(switches::kEnableAnswersInSuggest))
|
| - return true;
|
| -
|
| - return variations::GetVariationParamValue(
|
| - kBundledExperimentFieldTrialName,
|
| - kAnswersInSuggestRule) == "true";
|
| + return true;
|
| }
|
|
|
| bool OmniboxFieldTrial::AddUWYTMatchEvenIfPromotedURLs() {
|
|
|