#ifndef CHROME_COMMON_EXTENSIONS_API_WEBRTC_DESKTOP_CAPTURE_PRIVATE_H__
#define CHROME_COMMON_EXTENSIONS_API_WEBRTC_DESKTOP_CAPTURE_PRIVATE_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
namespace extensions {
namespace api {
namespace webrtc_desktop_capture_private {
struct RequestInfo { … };
enum class DesktopCaptureSourceType { … };
const char* ToString(DesktopCaptureSourceType as_enum);
DesktopCaptureSourceType ParseDesktopCaptureSourceType(std::string_view as_string);
std::u16string GetDesktopCaptureSourceTypeParseError(std::string_view as_string);
namespace ChooseDesktopMedia {
struct Params { … };
namespace Results {
base::Value::List Create(const std::string& stream_id);
}
}
namespace CancelChooseDesktopMedia {
struct Params { … };
}
}
}
}
#endif