#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_AUTOPLAY_UMA_HELPER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_AUTOPLAY_UMA_HELPER_H_
#include "base/time/time.h"
#include "third_party/blink/public/platform/web_media_player_client.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/dom/events/native_event_listener.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
namespace blink {
enum class AutoplaySource { … };
enum class AutoplayUnmuteActionStatus { … };
class Document;
class HTMLMediaElement;
class IntersectionObserver;
class IntersectionObserverEntry;
class CORE_EXPORT AutoplayUmaHelper : public NativeEventListener,
public ExecutionContextLifecycleObserver { … };
}
#endif