summaryrefslogtreecommitdiffstats
path: root/base/field_trial.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/field_trial.h')
-rw-r--r--base/field_trial.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/field_trial.h b/base/field_trial.h
index e0dedaa1..bde6717 100644
--- a/base/field_trial.h
+++ b/base/field_trial.h
@@ -34,8 +34,8 @@
// // process teardown, courtesy of their automatic registration in
// // FieldTrialList.
// scoped_refptr<FieldTrial> trial = new FieldTrial("MemoryExperiment", 1000);
-// int group1 = trial->AppendGroup("_high_mem", 20); // 2% this _high_mem group.
-// int group2 = trial->AppendGroup("_low_mem", 20); // 2% this _low_mem group.
+// int group1 = trial->AppendGroup("_high_mem", 20); // 2% in _high_mem group.
+// int group2 = trial->AppendGroup("_low_mem", 20); // 2% in _low_mem group.
// // Take action depending of which group we randomly land in.
// if (trial->group() == group1)
// SetMemoryModel(HIGH); // Sample setting of browser state.