chromium/third_party/blink/renderer/core/timing/render_blocking_metrics_reporter.h

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

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_RENDER_BLOCKING_METRICS_REPORTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_RENDER_BLOCKING_METRICS_REPORTER_H_

#include "base/time/time.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/supplementable.h"

namespace blink {

class Document;

class RenderBlockingMetricsReporter final
    : public GarbageCollected<RenderBlockingMetricsReporter>,
      public Supplement<Document> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_RENDER_BLOCKING_METRICS_REPORTER_H_