#include "content/browser/security/coop/cross_origin_opener_policy_reporter.h"
#include <memory>
#include <optional>
#include <vector>
#include "base/test/task_environment.h"
#include "base/unguessable_token.h"
#include "base/values.h"
#include "content/public/test/test_storage_partition.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "net/base/network_anonymization_key.h"
#include "services/network/test/test_network_context.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
class TestNetworkContext : public network::TestNetworkContext { … };
}
class CrossOriginOpenerPolicyReporterTest : public testing::Test { … };
TEST_F(CrossOriginOpenerPolicyReporterTest, Basic) { … }
TEST_F(CrossOriginOpenerPolicyReporterTest, UserAndPassSanitization) { … }
}