summaryrefslogtreecommitdiffstats
path: root/base/field_trial.h
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-03 01:30:51 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-03 01:30:51 +0000
commit1ea501f7f098c5a439f6ebdd132af03baa06410e (patch)
treea4e9d53ce4ae933547379c3d33fb10b577810d3e /base/field_trial.h
parent1272f2110974b6a889548250e726c4d92695f96c (diff)
downloadchromium_src-1ea501f7f098c5a439f6ebdd132af03baa06410e.zip
chromium_src-1ea501f7f098c5a439f6ebdd132af03baa06410e.tar.gz
chromium_src-1ea501f7f098c5a439f6ebdd132af03baa06410e.tar.bz2
Lint fix in comment
tbr=mbelshe Review URL: http://codereview.chromium.org/27369 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10770 0039d316-1c4b-4281-b951-d872f2087c98
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.