Chromium Code Reviews| Index: net/disk_cache/backend_impl.cc |
| =================================================================== |
| --- net/disk_cache/backend_impl.cc (revision 70854) |
| +++ net/disk_cache/backend_impl.cc (working copy) |
| @@ -182,7 +182,8 @@ |
| scoped_refptr<base::FieldTrial> trial2( |
| new base::FieldTrial("CacheThrottle", 100)); |
| int group2a = trial2->AppendGroup("CacheThrottle_On", 10); // 10 % in. |
| - trial2->AppendGroup("CacheThrottle_Off", 10); // 10 % control. |
| + trial2->AppendGroup("CacheThrottle_Off", |
| + base::FieldTrial::kAllRemainingProbability); // 90 % control. |
|
rvargas (doing something else)
2011/01/12 19:25:14
This is not the same. The experiment has a control
jar (doing other things)
2011/01/13 00:04:56
As per our discussion....
We need some way to est
|
| return trial2->group() == group2a; |
| } |