blob: bd59685f99558f7bb35d401c31222845ee4d3f78 [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#ifndef COMPONENTS_UNIFIED_CONSENT_FEATURE_H_
6#define COMPONENTS_UNIFIED_CONSENT_FEATURE_H_
7
8#include "base/feature_list.h"
9
10namespace unified_consent {
11
Thomas Tangl460a58612018-11-30 12:06:5212// Single consent for Google services in Chrome.
Mihai Sardarescu160ec662018-07-18 21:13:5113extern const base::Feature kUnifiedConsent;
Mihai Sardarescu160ec662018-07-18 21:13:5114
Thomas Tangl460a58612018-11-30 12:06:5215// Returns true if the unified consent feature state is enabled.
Mihai Sardarescu29a8cd82018-09-05 16:52:2016bool IsUnifiedConsentFeatureEnabled();
17
Mihai Sardarescu160ec662018-07-18 21:13:5118} // namespace unified_consent
19
20#endif // COMPONENTS_UNIFIED_CONSENT_FEATURE_H_