chromium/third_party/blink/renderer/core/frame/reporting_context_test.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/frame/reporting_context.h"

#include "base/test/metrics/histogram_tester.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/browser_interface_broker_proxy.h"
#include "third_party/blink/renderer/core/frame/deprecation/deprecation_report_body.h"
#include "third_party/blink/renderer/core/frame/document_policy_violation_report_body.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/permissions_policy_violation_report_body.h"
#include "third_party/blink/renderer/core/frame/report.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

class ReportingContextTest : public testing::Test {};

class MockReportingServiceProxy : public mojom::blink::ReportingServiceProxy {};

TEST_F(ReportingContextTest, CountQueuedReports) {}

TEST_F(ReportingContextTest, DeprecationReportContent) {}

TEST_F(ReportingContextTest, PermissionsPolicyViolationReportMessage) {}

TEST_F(ReportingContextTest, DocumentPolicyViolationReportMessage) {}

}  // namespace blink