diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 23:15:02 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 23:15:02 +0000 |
commit | a140efe66d0ddddcf2ef9ba01574f32c6d75edb1 (patch) | |
tree | c7043b87ab76cc4c2dbe482190599952123b503f /base | |
parent | 6d54e2ed7496f40ce817062650accbb7d5caaa5e (diff) | |
download | chromium_src-a140efe66d0ddddcf2ef9ba01574f32c6d75edb1.zip chromium_src-a140efe66d0ddddcf2ef9ba01574f32c6d75edb1.tar.gz chromium_src-a140efe66d0ddddcf2ef9ba01574f32c6d75edb1.tar.bz2 |
Some possible comment typos?
BUG=None
TEST=None, only changes to comments
Review URL: http://codereview.chromium.org/7888015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101409 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/metrics/field_trial.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/base/metrics/field_trial.h b/base/metrics/field_trial.h index 87b412b..0c244bb 100644 --- a/base/metrics/field_trial.h +++ b/base/metrics/field_trial.h @@ -54,7 +54,7 @@ // HISTOGRAM_COUNTS("Memory.RendererTotal", count); // The original histogram. // static const bool memory_renderer_total_trial_exists = -// FieldTrialList::TrialExists("Memory.RendererTotal"); +// FieldTrialList::TrialExists("MemoryExperiment"); // if (memory_renderer_total_trial_exists) { // HISTOGRAM_COUNTS(FieldTrial::MakeName("Memory.RendererTotal", // "MemoryExperiment"), count); @@ -120,9 +120,6 @@ class BASE_EXPORT FieldTrial : public RefCounted<FieldTrial> { // Changes the field trial to use one-time randomization, i.e. produce the // same result for the current trial on every run of this client. Must be // called right after construction. - // - // Before using this method, |FieldTrialList::EnableOneTimeRandomization()| - // must be called exactly once. void UseOneTimeRandomization(); // Disables this trial, meaning it always determines the default group |