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

Unified Diff: components/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 | « components/variations/BUILD.gn ('k') | components/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: components/variations/child_process_field_trial_syncer.h
diff --git a/chrome/common/variations/child_process_field_trial_syncer.h b/components/variations/child_process_field_trial_syncer.h
similarity index 80%
rename from chrome/common/variations/child_process_field_trial_syncer.h
rename to components/variations/child_process_field_trial_syncer.h
index 6a8a9eedde51bcbbeafee4eeccefa295e941c556..1a93d368df9d10bbcdbf7e43ddddeb9ad04fbf9e 100644
--- a/chrome/common/variations/child_process_field_trial_syncer.h
+++ b/components/variations/child_process_field_trial_syncer.h
@@ -2,8 +2,8 @@
// 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_
+#ifndef COMPONENTS_VARIATIONS_FIELD_TRIAL_SYNCER_H_
+#define COMPONENTS_VARIATIONS_FIELD_TRIAL_SYNCER_H_
#include <string>
@@ -14,7 +14,7 @@ namespace base {
class CommandLine;
}
-namespace chrome_variations {
+namespace variations {
// ChildProcessFieldTrialSyncer is a utility class that's responsible for
// syncing the "activated" state of field trials between browser and child
@@ -31,8 +31,11 @@ class ChildProcessFieldTrialSyncer {
~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);
+ // of any field trials that might have already been activated. Takes the
+ // switch name for single process mode as a parameter, since that's not
+ // visible to the component.
+ void InitFieldTrialObserving(const base::CommandLine& command_line,
+ const char* single_process_switch_name);
// Handler for messages from the browser process notifying the child process
// that a field trial was activated.
@@ -45,6 +48,6 @@ class ChildProcessFieldTrialSyncer {
DISALLOW_COPY_AND_ASSIGN(ChildProcessFieldTrialSyncer);
};
-} // namespace chrome_variations
+} // namespace variations
-#endif // CHROME_COMMON_VARIATIONS_CHILD_PROCESS_FIELD_TRIAL_SYNCER_H_
+#endif // COMPONENTS_VARIATIONS_FIELD_TRIAL_SYNCER_H_
« no previous file with comments | « components/variations/BUILD.gn ('k') | components/variations/child_process_field_trial_syncer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698