// 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. #ifndef COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_TYPE_SET_H_ #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_TYPE_SET_H_ #include "base/check.h" #include "components/content_settings/core/common/content_settings_types.h" // This class either contains a single type or represents all types. // It enforces correct type handling of content_setting Observers. class ContentSettingsTypeSet { … }; #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_TYPE_SET_H_