1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_AUTO_LAUNCH_TRIAL_H_
6 #define CHROME_BROWSER_AUTO_LAUNCH_TRIAL_H_
10 // Strings used with the "auto launching Chrome at computer startup" trial. If
11 // the field trial is running then...
12 // base::FieldTrialList::TrialExists(kAutoLaunchTrial_Name) returns true.
14 // The field trial consists of two groups of users: those that auto-launch
15 // Chrome at startup and those that don't. The group_name() of the field
16 // trial object is used to determine the group that the user belongs to.
18 // The field trial is setup in ChromeBrowserMainParts::AutoLaunchFieldTrial()
19 // based on the user's brand code:
21 // - brand RNGP auto launches Chrome on computer startup.
22 // - brand RNGQ does not.
23 // - any other brand code does whatever comes natural to it.
25 extern const char kAutoLaunchTrialName
[];
26 extern const char kAutoLaunchTrialAutoLaunchGroup
[];
27 extern const char kAutoLaunchTrialControlGroup
[];
29 namespace auto_launch_trial
{
31 // The possible responses for the auto-launch infobar.
32 enum InfobarMetricResponse
{
33 INFOBAR_CUT_IT_OUT
= 0,
38 // Whether the auto-launch experiment is active and the user is part of it.
39 bool IsInAutoLaunchGroup();
41 // Whether the brand is part of the experiment group for auto-launch.
42 bool IsInExperimentGroup(const std::string
& brand_code
);
44 // Whether the brand is part of the control group for auto-launch.
45 bool IsInControlGroup(const std::string
& brand_code
);
47 } // namespace auto_launch_trial
49 #endif // CHROME_BROWSER_AUTO_LAUNCH_TRIAL_H_