chromium/third_party/blink/renderer/platform/media/web_media_source_impl.h

// Copyright 2013 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_PLATFORM_MEDIA_WEB_MEDIA_SOURCE_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_WEB_MEDIA_SOURCE_IMPL_H_

#include <vector>

#include "base/memory/raw_ptr.h"
#include "third_party/blink/public/platform/web_media_source.h"
#include "third_party/blink/renderer/platform/platform_export.h"

namespace media {
class AudioDecoderConfig;
class ChunkDemuxer;
class VideoDecoderConfig;
}  // namespace media

namespace blink {

class PLATFORM_EXPORT WebMediaSourceImpl : public WebMediaSource {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_WEB_MEDIA_SOURCE_IMPL_H_