blob: 7f87d774cbba3dedfa98acad1e4b929089bc80ac [file] [log] [blame]
Mihai Sardarescu160ec662018-07-18 21:13:511// Copyright 2018 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.
4
5#include "components/unified_consent/feature.h"
6
Mihai Sardarescu160ec662018-07-18 21:13:517namespace unified_consent {
8
Thomas Tangl460a58612018-11-30 12:06:529// base::Feature definition.
Mihai Sardarescu160ec662018-07-18 21:13:5110const base::Feature kUnifiedConsent{"UnifiedConsent",
11 base::FEATURE_DISABLED_BY_DEFAULT};
Mihai Sardarescu29a8cd82018-09-05 16:52:2012
13bool IsUnifiedConsentFeatureEnabled() {
Thomas Tangl460a58612018-11-30 12:06:5214 return base::FeatureList::IsEnabled(kUnifiedConsent);
Mihai Sardarescu29a8cd82018-09-05 16:52:2015}
Mihai Sardarescu160ec662018-07-18 21:13:5116
17} // namespace unified_consent