Chromium Code Reviews| Index: chrome/browser/about_flags.cc |
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
| index 0e87ccf3aad24747016c90631dc95e9b893de46b..bd8dd7e4ce0fe542e565babae1fc202d0df8d227 100644 |
| --- a/chrome/browser/about_flags.cc |
| +++ b/chrome/browser/about_flags.cc |
| @@ -224,6 +224,12 @@ const Experiment::Choice kMaxTilesForInterestAreaChoices[] = { |
| cc::switches::kMaxTilesForInterestArea, "512"} |
| }; |
| +const Experiment::Choice kSimpleCacheBackendChoices[] = { |
|
rvargas (doing something else)
2013/04/09 19:02:47
This should only be there for Android
|
| + { IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, "", "off" }, |
| + { IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED, |
| + switches::kUseSimpleCacheBackend, "on"} |
| +}; |
| + |
| // RECORDING USER METRICS FOR FLAGS: |
| // ----------------------------------------------------------------------------- |
| // The first line of the experiment is the internal name. If you'd like to |
| @@ -1308,6 +1314,13 @@ const Experiment kExperiments[] = { |
| kOsAll, |
| SINGLE_VALUE_TYPE(switches::kEnableTranslateAlphaLanguages) |
| }, |
| + { |
| + "enable-simple-cache-backend", |
| + IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, |
| + IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, |
| + kOsAll, |
| + MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
| + } |
| }; |
| const Experiment* experiments = kExperiments; |