#include "services/network/tpcd/metadata/manager.h"
#include <memory>
#include <vector>
#include "base/test/scoped_feature_list.h"
#include "components/content_settings/core/common/content_settings.h"
#include "components/content_settings/core/common/content_settings_enums.mojom-shared.h"
#include "components/content_settings/core/common/features.h"
#include "net/base/features.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace network::tpcd::metadata {
class ManagerTest : public ::testing::Test,
public ::testing::WithParamInterface<
bool> { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(ManagerTest, SetGrants) { … }
TEST_P(ManagerTest, GetContentSetting) { … }
}