| Index: content/app/content_main_runner.cc
 | 
| diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
 | 
| index e1504f738c46a9e8343d544a847d323df4d6d6e9..929756b451ea3291c76c049a55c183421d64f02a 100644
 | 
| --- a/content/app/content_main_runner.cc
 | 
| +++ b/content/app/content_main_runner.cc
 | 
| @@ -155,9 +155,9 @@ void InitializeFieldTrialAndFeatureList(
 | 
|  #endif
 | 
|  
 | 
|    std::unique_ptr<base::FeatureList> feature_list(new base::FeatureList);
 | 
| -  feature_list->InitializeFromCommandLine(
 | 
| -      command_line.GetSwitchValueASCII(switches::kEnableFeatures),
 | 
| -      command_line.GetSwitchValueASCII(switches::kDisableFeatures));
 | 
| +  base::FieldTrialList::CreateFeaturesFromCommandLine(
 | 
| +      command_line, switches::kEnableFeatures, switches::kDisableFeatures,
 | 
| +      feature_list.get());
 | 
|    base::FeatureList::SetInstance(std::move(feature_list));
 | 
|  }
 | 
|  
 | 
| 
 |