// 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 MEDIA_FORMATS_HLS_PLAYLIST_H_ #define MEDIA_FORMATS_HLS_PLAYLIST_H_ #include "base/memory/ref_counted.h" #include "media/base/media_export.h" #include "media/formats/hls/types.h" #include "url/gurl.h" namespace media::hls { class MEDIA_EXPORT Playlist : public base::RefCounted<Playlist> { … }; } // namespace media::hls #endif // MEDIA_FORMATS_HLS_PLAYLIST_H_