#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_MEDIA_CONTEXT_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_MEDIA_CONTEXT_IMPL_H_
#include "build/build_config.h"
#include "third_party/blink/public/web/web_media_inspector.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/supplementable.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
#include "third_party/blink/renderer/platform/wtf/text/string_hash.h"
namespace blink {
#if BUILDFLAG(IS_ANDROID)
constexpr int kMaxCachedPlayerEvents = 128;
#else
constexpr int kMaxCachedPlayerEvents = …;
#endif
class ExecutionContext;
struct MediaPlayer final : public GarbageCollected<MediaPlayer> { … };
class CORE_EXPORT MediaInspectorContextImpl final
: public GarbageCollected<MediaInspectorContextImpl>,
public Supplement<ExecutionContext>,
public MediaInspectorContext { … };
}
#endif