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

Unified Diff: chrome/browser/field_trial_recorder_impl.cc

Issue 2453313004: Convert FieldTrialActivated to use mojo. (Closed)
Patch Set: Convert FieldTrialActivated to use mojo. Created 4 years, 1 month 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
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);
+}

Powered by Google App Engine
This is Rietveld 408576698