// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_OVERLAY_INFO_H_ #define MEDIA_BASE_OVERLAY_INFO_H_ #include <optional> #include "base/functional/callback_forward.h" #include "base/unguessable_token.h" #include "media/base/media_export.h" namespace media { struct MEDIA_EXPORT OverlayInfo { … }; // Used by the WebMediaPlayer to provide overlay information to the decoder, // which can ask for that information repeatedly (see // WebMediaPlayerImpl::OnOverlayInfoRequested). ProvideOverlayInfoCB; RequestOverlayInfoCB; } // namespace media #endif // MEDIA_BASE_OVERLAY_INFO_H_