| Index: net/disk_cache/simple/simple_experiment.h
|
| diff --git a/net/disk_cache/simple/simple_experiment.h b/net/disk_cache/simple/simple_experiment.h
|
| index 2231e852266f27aa449e23cc4295c6fccc6e20e5..7f20ae07bca73af049810edce9c36dfae9a20e4b 100644
|
| --- a/net/disk_cache/simple/simple_experiment.h
|
| +++ b/net/disk_cache/simple/simple_experiment.h
|
| @@ -14,13 +14,20 @@
|
| namespace disk_cache {
|
|
|
| NET_EXPORT_PRIVATE extern const base::Feature kSimpleSizeExperiment;
|
| +NET_EXPORT_PRIVATE extern const base::Feature
|
| + kSimpleCacheEvictionWithSizeExperiment;
|
| NET_EXPORT_PRIVATE extern const char kSizeMultiplierParam[];
|
| +NET_EXPORT_PRIVATE extern const char kSizeEvictionParam[];
|
|
|
| // This lists the experiment groups for SimpleCache. Only add new groups at
|
| // the end of the list, and always increase the number.
|
| enum class SimpleExperimentType : uint32_t {
|
| NONE = 0,
|
| SIZE = 1,
|
| +
|
| + // param = 0 -> control group
|
| + // param = 1 -> experiment group
|
| + EVICT_WITH_SIZE = 2,
|
| };
|
|
|
| struct NET_EXPORT_PRIVATE SimpleExperiment {
|
|
|