Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3939)

Unified Diff: chrome/renderer/chrome_render_process_observer.cc

Issue 10165014: Add and implement API to associate Google experiment IDs with FieldTrials. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added time variable Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/metrics/experiments_helper_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_render_process_observer.cc
diff --git a/chrome/renderer/chrome_render_process_observer.cc b/chrome/renderer/chrome_render_process_observer.cc
index 833b84bb789ce926edf3f9df67ef7f99f0db7262..70aec654f68d179936e0eaeaa39142ff86d9f8c1 100644
--- a/chrome/renderer/chrome_render_process_observer.cc
+++ b/chrome/renderer/chrome_render_process_observer.cc
@@ -198,7 +198,7 @@ ChromeRenderProcessObserver::ChromeRenderProcessObserver(
base::LoadNativeLibrary(FilePath(L"crypt32.dll"), &error);
#endif
// Setup initial set of crash dump data for Field Trials in this renderer.
- ExperimentsHelper::SetChildProcessLoggingExperimentList();
+ experiments_helper::SetChildProcessLoggingExperimentList();
}
ChromeRenderProcessObserver::~ChromeRenderProcessObserver() {
@@ -309,7 +309,7 @@ void ChromeRenderProcessObserver::OnSetFieldTrialGroup(
const std::string& field_trial_name,
const std::string& group_name) {
base::FieldTrialList::CreateFieldTrial(field_trial_name, group_name);
- ExperimentsHelper::SetChildProcessLoggingExperimentList();
+ experiments_helper::SetChildProcessLoggingExperimentList();
}
void ChromeRenderProcessObserver::OnGetV8HeapStats() {
« no previous file with comments | « chrome/common/metrics/experiments_helper_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698