#ifndef CONTENT_PUBLIC_RENDERER_KEY_SYSTEM_SUPPORT_H_
#define CONTENT_PUBLIC_RENDERER_KEY_SYSTEM_SUPPORT_H_
#include <string>
#include "base/containers/flat_map.h"
#include "base/functional/callback.h"
#include "content/common/content_export.h"
#include "media/mojo/mojom/key_system_support.mojom.h"
namespace content {
using KeySystemCapabilityPtrMap =
base::flat_map<std::string, media::mojom::KeySystemCapabilityPtr>;
using KeySystemSupportCB =
base::RepeatingCallback<void(KeySystemCapabilityPtrMap)>;
CONTENT_EXPORT void ObserveKeySystemSupportUpdate(KeySystemSupportCB cb);
}
#endif