#ifndef CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_CONSTANTS_H_
#define CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_CONSTANTS_H_
#include <stdint.h>
#include "build/build_config.h"
#include "chrome/common/buildflags.h"
#include "content/public/browser/browsing_data_filter_builder.h"
#include "content/public/browser/browsing_data_remover.h"
#include "extensions/buildflags/buildflags.h"
namespace chrome_browsing_data_remover {
DataType;
constexpr DataType DATA_TYPE_EMBEDDER_BEGIN = …;
constexpr DataType DATA_TYPE_HISTORY = …;
constexpr DataType DATA_TYPE_FORM_DATA = …;
constexpr DataType DATA_TYPE_PASSWORDS = …;
#if BUILDFLAG(IS_ANDROID)
constexpr DataType DATA_TYPE_WEB_APP_DATA = DATA_TYPE_EMBEDDER_BEGIN << 3;
#endif
constexpr DataType DATA_TYPE_SITE_USAGE_DATA = …;
constexpr DataType DATA_TYPE_DURABLE_PERMISSION = …;
constexpr DataType DATA_TYPE_EXTERNAL_PROTOCOL_DATA = …;
constexpr DataType DATA_TYPE_HOSTED_APP_DATA_TEST_ONLY = …;
constexpr DataType DATA_TYPE_CONTENT_SETTINGS = …;
constexpr DataType DATA_TYPE_BOOKMARKS = …;
constexpr DataType DATA_TYPE_ISOLATED_ORIGINS = …;
constexpr DataType DATA_TYPE_ACCOUNT_PASSWORDS = …;
constexpr DataType DATA_TYPE_LOCAL_CUSTOM_DICTIONARY = …;
constexpr DataType DATA_TYPE_ISOLATED_WEB_APP_COOKIES = …;
constexpr DataType DATA_TYPE_READING_LIST = …;
constexpr DataType DATA_TYPE_TABS = …;
constexpr DataType DATA_TYPE_SITE_DATA = …;
constexpr DataType IMPORTANT_SITES_DATA_TYPES = …;
constexpr DataType FILTERABLE_DATA_TYPES = …;
constexpr DataType DEFERRED_COOKIE_DELETION_DATA_TYPES = …;
constexpr DataType ALL_DATA_TYPES = …;
constexpr DataType WIPE_PROFILE = …;
OriginType;
constexpr OriginType ORIGIN_TYPE_EMBEDDER_BEGIN = …;
#if BUILDFLAG(ENABLE_EXTENSIONS)
constexpr OriginType ORIGIN_TYPE_EXTENSION = …;
#endif
constexpr OriginType ALL_ORIGIN_TYPES = …;
static_assert …;
static_assert …;
static_assert …;
}
#endif