| Index: chrome/browser/field_trial_recorder_impl.cc
|
| diff --git a/chrome/browser/field_trial_recorder_impl.cc b/chrome/browser/field_trial_recorder_impl.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b86b2ce9f04b26876b142b373a0851f74483c795
|
| --- /dev/null
|
| +++ b/chrome/browser/field_trial_recorder_impl.cc
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#include "chrome/browser/field_trial_recorder_impl.h"
|
| +
|
| +#include "base/metrics/field_trial.h"
|
| +#include "mojo/public/cpp/bindings/strong_binding.h"
|
| +
|
| +FieldTrialRecorderImpl::FieldTrialRecorderImpl() = default;
|
| +
|
| +FieldTrialRecorderImpl::~FieldTrialRecorderImpl() = default;
|
| +
|
| +// static
|
| +void FieldTrialRecorderImpl::Create(
|
| + chrome::mojom::FieldTrialRecorderRequest request) {
|
| + mojo::MakeStrongBinding(base::MakeUnique<FieldTrialRecorderImpl>(),
|
| + std::move(request));
|
| +}
|
| +
|
| +void FieldTrialRecorderImpl::FieldTrialActivated(
|
| + const std::string& trial_name) {
|
| + DCHECK(thread_checker_.CalledOnValidThread());
|
| + // Activate the trial in the browser process to match its state in the
|
| + // renderer. This is done by calling FindFullName which finalizes the group
|
| + // and activates the trial.
|
| + base::FieldTrialList::FindFullName(trial_name);
|
| +}
|
|
|