chromium/content/public/browser/media_session_client.h

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

#ifndef CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_CLIENT_H_
#define CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_CLIENT_H_

#include <string>

#include "content/common/content_export.h"

namespace content {
class BrowserContext;
}

class SkBitmap;

namespace content {

// Interface for a client to participate in media session logic. The primary use
// for this API is for embedders to set whether media information should be
// hidden from OS’ media controls. Additionally, this API will be used for
// embedders to set their own media metadata placeholders for display when the
// media information is hidden.
class CONTENT_EXPORT MediaSessionClient {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_CLIENT_H_