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

// Copyright 2021 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_DEVICE_SELECTOR_H_
#define COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_VIEWS_MEDIA_ITEM_UI_DEVICE_SELECTOR_H_

#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/view.h"

namespace global_media_controls {

class MediaItemUIUpdatedView;
class MediaItemUIView;

// A MediaItemUIDeviceSelector is a views::View that should be inserted into the
// bottom of the MediaItemUI which contains an expandable list of devices to
// connect to (audio/Cast/etc).
class COMPONENT_EXPORT(GLOBAL_MEDIA_CONTROLS) MediaItemUIDeviceSelector
    : public views::View {};

}  // namespace global_media_controls

#endif  // COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_VIEWS_MEDIA_ITEM_UI_DEVICE_SELECTOR_H_