chromium/components/global_media_controls/public/views/media_item_ui_list_view.h

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

#ifndef COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_VIEWS_MEDIA_ITEM_UI_LIST_VIEW_H_
#define COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_VIEWS_MEDIA_ITEM_UI_LIST_VIEW_H_

#include <map>
#include <memory>
#include <optional>

#include "base/component_export.h"
#include "base/memory/weak_ptr.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/scroll_view.h"

namespace global_media_controls {

class MediaItemUIUpdatedView;
class MediaItemUIView;

// MediaItemUIListView is a scrollable view container that holds a list of
// MediaItemUIViews or MediaItemUIUpdatedViews, and creates item separators if
// needed.
class COMPONENT_EXPORT(GLOBAL_MEDIA_CONTROLS) MediaItemUIListView
    : public views::ScrollView {};

}  // namespace global_media_controls

#endif  // COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_VIEWS_MEDIA_ITEM_UI_LIST_VIEW_H_