blob: 5552a74e7d84ffd139b519fb29ca9e72dc63e9a3 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PAGE_INFO_ANDROID_COOKIE_CONTROLS_STATUS_H_
#define COMPONENTS_PAGE_INFO_ANDROID_COOKIE_CONTROLS_STATUS_H_
// Status of the Cookie controls controller, used by CookieControlsIconView
// and CookieControlsBubbleView.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.page_info
// GENERATED_JAVA_CLASS_NAME_OVERRIDE: CookieControlsStatus
enum class CookieControlsStatus {
kUninitialized,
// Third-Party cookie blocking is enabled.
kEnabled,
// Third-Party cookie blocking is disabled.
kDisabled,
// Third-Party cookie blocking is enabled in general but was disabled
// for this site.
kDisabledForSite,
};
#endif // COMPONENTS_PAGE_INFO_ANDROID_COOKIE_CONTROLS_STATUS_H_