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

Unified Diff: chrome/common/variations/child_process_field_trial_syncer.h

Issue 2514593002: Field trial synchronization to PPAPI process. (Closed)
Patch Set: Fix namespace. 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
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/variations/child_process_field_trial_syncer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/variations/child_process_field_trial_syncer.h
diff --git a/chrome/common/variations/child_process_field_trial_syncer.h b/chrome/common/variations/child_process_field_trial_syncer.h
deleted file mode 100644
index 6a8a9eedde51bcbbeafee4eeccefa295e941c556..0000000000000000000000000000000000000000
--- a/chrome/common/variations/child_process_field_trial_syncer.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// 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.
-
-#ifndef CHROME_COMMON_VARIATIONS_CHILD_PROCESS_FIELD_TRIAL_SYNCER_H_
-#define CHROME_COMMON_VARIATIONS_CHILD_PROCESS_FIELD_TRIAL_SYNCER_H_
-
-#include <string>
-
-#include "base/macros.h"
-#include "base/metrics/field_trial.h"
-
-namespace base {
-class CommandLine;
-}
-
-namespace chrome_variations {
-
-// ChildProcessFieldTrialSyncer is a utility class that's responsible for
-// syncing the "activated" state of field trials between browser and child
-// processes. Specifically, when a field trial is activated in the browser, it
-// also activates it in the child process and when a field trial is activated
-// in the child process, it notifies the browser process to activate it.
-class ChildProcessFieldTrialSyncer {
- public:
- // ChildProcessFieldTrialSyncer constructor taking an externally owned
- // |observer| param that's responsible for sending IPCs to the browser process
- // when a trial is activated. The |observer| must outlive this object.
- explicit ChildProcessFieldTrialSyncer(
- base::FieldTrialList::Observer* observer);
- ~ChildProcessFieldTrialSyncer();
-
- // Initializes field trial state change observation and notifies the browser
- // of any field trials that might have already been activated.
- void InitFieldTrialObserving(const base::CommandLine& command_line);
-
- // Handler for messages from the browser process notifying the child process
- // that a field trial was activated.
- void OnSetFieldTrialGroup(const std::string& trial_name,
- const std::string& group_name);
-
- private:
- base::FieldTrialList::Observer* const observer_;
-
- DISALLOW_COPY_AND_ASSIGN(ChildProcessFieldTrialSyncer);
-};
-
-} // namespace chrome_variations
-
-#endif // CHROME_COMMON_VARIATIONS_CHILD_PROCESS_FIELD_TRIAL_SYNCER_H_
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/variations/child_process_field_trial_syncer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698