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

Unified Diff: chrome/browser/metrics/field_trial_synchronizer.cc

Issue 9432033: Add experiments info to crash dumps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Last Few Nits 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/browser/chrome_browser_main.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/field_trial_synchronizer.cc
===================================================================
--- chrome/browser/metrics/field_trial_synchronizer.cc (revision 130670)
+++ chrome/browser/metrics/field_trial_synchronizer.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -8,6 +8,7 @@
#include "base/logging.h"
#include "base/threading/thread.h"
#include "chrome/common/chrome_constants.h"
+#include "chrome/common/metrics/experiments_helper.h"
#include "chrome/common/render_messages.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_process_host.h"
@@ -18,6 +19,8 @@
DCHECK(field_trial_synchronizer_ == NULL);
field_trial_synchronizer_ = this;
base::FieldTrialList::AddObserver(this);
+
+ ExperimentsHelper::SetChildProcessLoggingExperimentList();
}
FieldTrialSynchronizer::~FieldTrialSynchronizer() {
@@ -49,6 +52,7 @@
this,
field_trial_name,
group_name));
+ ExperimentsHelper::SetChildProcessLoggingExperimentList();
}
// static
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698