| Index: chrome/browser/about_flags.cc
 | 
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
 | 
| index a04939e65aeeb9bf58bbbf92f42a9238ff847f12..b1d76647fa929ecadd1ed3220f51e8139647632b 100644
 | 
| --- a/chrome/browser/about_flags.cc
 | 
| +++ b/chrome/browser/about_flags.cc
 | 
| @@ -296,15 +296,19 @@ const Experiment::Choice kEnableGpuRasterizationChoices[] = {
 | 
|  
 | 
|  #if defined(OS_CHROMEOS)
 | 
|  const Experiment::Choice kMemoryPressureThresholdChoices[] = {
 | 
| -  { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
 | 
| -  { IDS_FLAGS_CONSERVATIVE_THRESHOLDS,
 | 
| -    chromeos::switches::kMemoryPressureThresholds, "1" },
 | 
| -  { IDS_FLAGS_AGGRESSIVE_CACHE_DISCARD_THRESHOLDS,
 | 
| -    chromeos::switches::kMemoryPressureThresholds, "2" },
 | 
| -  { IDS_FLAGS_AGGRESSIVE_TAB_DISCARD_THRESHOLDS,
 | 
| -    chromeos::switches::kMemoryPressureThresholds, "3" },
 | 
| -  { IDS_FLAGS_AGGRESSIVE_THRESHOLDS,
 | 
| -    chromeos::switches::kMemoryPressureThresholds, "4" },
 | 
| +    { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
 | 
| +    { IDS_FLAGS_CONSERVATIVE_THRESHOLDS,
 | 
| +      chromeos::switches::kMemoryPressureThresholds,
 | 
| +      kConservativeThreshold },
 | 
| +    { IDS_FLAGS_AGGRESSIVE_CACHE_DISCARD_THRESHOLDS,
 | 
| +      chromeos::switches::kMemoryPressureThresholds,
 | 
| +      kAggressiveCacheDiscardThreshold },
 | 
| +    { IDS_FLAGS_AGGRESSIVE_TAB_DISCARD_THRESHOLDS,
 | 
| +      chromeos::switches::kMemoryPressureThresholds,
 | 
| +      kAggressiveTabDiscardThreshold },
 | 
| +    { IDS_FLAGS_AGGRESSIVE_THRESHOLDS,
 | 
| +      chromeos::switches::kMemoryPressureThresholds,
 | 
| +      kAggressiveThreshold },
 | 
|  };
 | 
|  #endif
 | 
|  
 | 
| 
 |