chromium/services/media_session/public/cpp/chapter_information.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace media_session