diff options
author | stevet@chromium.org <stevet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-23 17:41:04 +0000 |
---|---|---|
committer | stevet@chromium.org <stevet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-23 17:41:04 +0000 |
commit | 1229d4bcc17f59404672224b2a91f6a782e846de (patch) | |
tree | 0e6534deeaa3fc1bff0f3ce789d02a7fdbd743aa /chrome/browser/metrics | |
parent | 0c54791ed97f7bf78b75d117a793fc17bdb24d86 (diff) | |
download | chromium_src-1229d4bcc17f59404672224b2a91f6a782e846de.zip chromium_src-1229d4bcc17f59404672224b2a91f6a782e846de.tar.gz chromium_src-1229d4bcc17f59404672224b2a91f6a782e846de.tar.bz2 |
Add and implement API to associate Google experiment IDs with FieldTrials.
This includes unit tests for the API, but no uses yet.
This change also involves exposing a new MakeGroupNameId static helper in FieldTrial to assist with the usage of this new API.
BUG=121988
TEST=Ensure that unit_tests GoogleExperimentsTest.* pass.
Review URL: http://codereview.chromium.org/10165014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics')
-rw-r--r-- | chrome/browser/metrics/field_trial_synchronizer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/metrics/field_trial_synchronizer.cc b/chrome/browser/metrics/field_trial_synchronizer.cc index 09f8f07..a6ad4c5 100644 --- a/chrome/browser/metrics/field_trial_synchronizer.cc +++ b/chrome/browser/metrics/field_trial_synchronizer.cc @@ -20,7 +20,7 @@ FieldTrialSynchronizer::FieldTrialSynchronizer() { field_trial_synchronizer_ = this; base::FieldTrialList::AddObserver(this); - ExperimentsHelper::SetChildProcessLoggingExperimentList(); + experiments_helper::SetChildProcessLoggingExperimentList(); } FieldTrialSynchronizer::~FieldTrialSynchronizer() { @@ -52,7 +52,7 @@ void FieldTrialSynchronizer::OnFieldTrialGroupFinalized( this, field_trial_name, group_name)); - ExperimentsHelper::SetChildProcessLoggingExperimentList(); + experiments_helper::SetChildProcessLoggingExperimentList(); } // static |