#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TIMING_FIRST_MEANINGFUL_PAINT_DETECTOR_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TIMING_FIRST_MEANINGFUL_PAINT_DETECTOR_H_
#include "base/time/time.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/paint/paint_event.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"
namespace base {
class TickClock;
}
namespace viz {
struct FrameTimingDetails;
}
namespace blink {
class Document;
class LayoutObjectCounter;
class PaintTiming;
class CORE_EXPORT FirstMeaningfulPaintDetector
: public GarbageCollected<FirstMeaningfulPaintDetector> { … };
}
#endif