Home | History | Annotate | Download | only in disk_cache
      1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
      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_EXPERIMENTS_H_
      6 #define NET_DISK_CACHE_EXPERIMENTS_H_
      7 #pragma once
      8 
      9 
     10 namespace disk_cache {
     11 
     12 // This lists the experiment groups that we care about. Only add new groups at
     13 // the end of the list, and always increase the number.
     14 enum {
     15   NO_EXPERIMENT = 0,
     16   EXPERIMENT_OLD_FILE1 = 3,
     17   EXPERIMENT_OLD_FILE2 = 4,
     18   EXPERIMENT_DELETED_LIST_OUT = 11,
     19   EXPERIMENT_DELETED_LIST_CONTROL = 12,
     20   EXPERIMENT_DELETED_LIST_IN = 13
     21 };
     22 
     23 }  // namespace disk_cache
     24 
     25 #endif  // NET_DISK_CACHE_EXPERIMENTS_H_
     26