blob: 06d7d96699aeca17967cb8a721a5964aeb523293 [file] [log] [blame]
// 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};
const 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