#ifndef CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_KEY_MANAGEMENT_BROWSER_KEY_UTILS_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_KEY_MANAGEMENT_BROWSER_KEY_UTILS_H_
#include <optional>
#include <string>
namespace policy {
class DeviceManagementService;
}
namespace enterprise_connectors {
std::optional<std::string> GetUploadBrowserPublicKeyUrl(
const std::string& client_id,
const std::string& dm_token,
const std::optional<std::string>& profile_id,
policy::DeviceManagementService* device_management_service);
}
#endif