summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics
diff options
context:
space:
mode:
authoralokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-26 17:33:26 +0000
committeralokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-26 17:33:26 +0000
commite34f2d1adaadc24453d80ce539b5e7f4e944ca7f (patch)
tree6523ae95c77e068d38dbe6191d0d67abe216aec4 /chrome/browser/metrics
parent37f3d401229b735788df3710f1320e0c091becea (diff)
downloadchromium_src-e34f2d1adaadc24453d80ce539b5e7f4e944ca7f.zip
chromium_src-e34f2d1adaadc24453d80ce539b5e7f4e944ca7f.tar.gz
chromium_src-e34f2d1adaadc24453d80ce539b5e7f4e944ca7f.tar.bz2
Revert 128910 - Add experiments info to crash dumps.
BUG=None TEST=Make sure that the crash dumps are correctly generated and contain experiments information when appropriate. Review URL: http://codereview.chromium.org/9432033 TBR=mad@chromium.org Review URL: https://chromiumcodereview.appspot.com/9773036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128941 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics')
-rw-r--r--chrome/browser/metrics/field_trial_synchronizer.cc8
1 files changed, 1 insertions, 7 deletions
diff --git a/chrome/browser/metrics/field_trial_synchronizer.cc b/chrome/browser/metrics/field_trial_synchronizer.cc
index 5db5b0e..c62336b 100644
--- a/chrome/browser/metrics/field_trial_synchronizer.cc
+++ b/chrome/browser/metrics/field_trial_synchronizer.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -7,7 +7,6 @@
#include "base/bind.h"
#include "base/logging.h"
#include "base/threading/thread.h"
-#include "chrome/common/child_process_logging.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/render_messages.h"
#include "content/public/browser/browser_thread.h"
@@ -19,10 +18,6 @@ FieldTrialSynchronizer::FieldTrialSynchronizer() {
DCHECK(field_trial_synchronizer_ == NULL);
field_trial_synchronizer_ = this;
base::FieldTrialList::AddObserver(this);
-
- std::string state;
- base::FieldTrialList::StatesToString(&state);
- child_process_logging::InitExperimentList(state);
}
FieldTrialSynchronizer::~FieldTrialSynchronizer() {
@@ -54,7 +49,6 @@ void FieldTrialSynchronizer::OnFieldTrialGroupFinalized(
this,
field_trial_name,
group_name));
- child_process_logging::AddFieldTrialGroup(field_trial_name, group_name);
}
// static