#include "services/media_session/public/cpp/chapter_information.h"
namespace media_session {
ChapterInformation::ChapterInformation() = default;
ChapterInformation::ChapterInformation(std::u16string title,
base::TimeDelta start_time,
std::vector<MediaImage> artwork)
: … { … }
ChapterInformation::ChapterInformation(const ChapterInformation& other) =
default;
ChapterInformation::~ChapterInformation() = default;
bool ChapterInformation::operator==(const ChapterInformation& other) const { … }
base::TimeDelta ChapterInformation::startTime() const { … }
std::u16string ChapterInformation::title() const { … }
std::vector<MediaImage> ChapterInformation::artwork() const { … }
}