xref: /aosp_15_r20/external/cronet/net/disk_cache/blockfile/experiments.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_DISK_CACHE_BLOCKFILE_EXPERIMENTS_H_
6 #define NET_DISK_CACHE_BLOCKFILE_EXPERIMENTS_H_
7 
8 namespace disk_cache {
9 
10 // This lists the experiment groups that we care about. Only add new groups at
11 // the end of the list, and always increase the number.
12 enum {
13   NO_EXPERIMENT = 0,
14   EXPERIMENT_OLD_FILE1 = 3,
15   EXPERIMENT_OLD_FILE2 = 4,
16   EXPERIMENT_DELETED_LIST_OUT = 11,
17   EXPERIMENT_DELETED_LIST_CONTROL = 12,
18   EXPERIMENT_DELETED_LIST_IN = 13,
19   EXPERIMENT_DELETED_LIST_OUT2 = 14,
20   // There is no EXPERIMENT_SIMPLE_YES since this enum is used in the standard
21   // backend only.
22   EXPERIMENT_SIMPLE_CONTROL = 15,
23 };
24 
25 }  // namespace disk_cache
26 
27 #endif  // NET_DISK_CACHE_BLOCKFILE_EXPERIMENTS_H_
28