1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/accuracy_tips/features.h"
#include "base/feature_list.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/safe_browsing/core/common/features.h"
namespace accuracy_tips {
namespace features {
const base::FeatureParam<std::string> kSampleUrl{
&safe_browsing::kAccuracyTipsFeature, "SampleUrl", ""};
const base::FeatureParam<bool> kDisableUi{&safe_browsing::kAccuracyTipsFeature,
"DisableUI", false};
const base::FeatureParam<std::string> kLearnMoreUrl{
&safe_browsing::kAccuracyTipsFeature, "LearnMoreUrl", ""};
const base::FeatureParam<base::TimeDelta> kTimeBetweenPrompts{
&safe_browsing::kAccuracyTipsFeature, "TimeBetweenPrompts", base::Days(7)};
extern const base::FeatureParam<int> kNumIgnorePrompts{
&safe_browsing::kAccuracyTipsFeature, "NumIgnorePrompts", 2};
extern const base::FeatureParam<int> kMaxSiteEngagementScore{
&safe_browsing::kAccuracyTipsFeature, "MaxSiteEngagementScore", -1};
BASE_FEATURE(kAccuracyTipsSurveyFeature,
"AccuracyTipsSurvey",
base::FEATURE_DISABLED_BY_DEFAULT);
const base::FeatureParam<base::TimeDelta> kMinTimeToShowSurvey{
&kAccuracyTipsSurveyFeature, "MinTimeToShowSurvey", base::Minutes(10)};
const base::FeatureParam<base::TimeDelta> kMaxTimeToShowSurvey{
&kAccuracyTipsSurveyFeature, "MaxTimeToShowSurvey", base::Minutes(30)};
const base::FeatureParam<int> kMinPromptCountRequiredForSurvey{
&kAccuracyTipsSurveyFeature, "MinPromptCountRequiredForSurvey", 1};
} // namespace features
} // namespace accuracy_tips
|