// 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_MEDIA_ITEM_PRODUCER_H_ #define COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_MEDIA_ITEM_PRODUCER_H_ #include <set> #include <string> #include "base/memory/weak_ptr.h" namespace media_message_center { class MediaNotificationItem; } // namespace media_message_center namespace global_media_controls { class MediaItemUI; // Creates and owns the media items shown in the Global Media Controls. There // are multiple MediaItemProducers for different types of media items. class MediaItemProducer { … }; } // namespace global_media_controls #endif // COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_MEDIA_ITEM_PRODUCER_H_