#ifndef CHROME_BROWSER_CONTEXTUAL_TASKS_AI_MODE_CONTEXT_LIBRARY_CONVERTER_H_
#define CHROME_BROWSER_CONTEXTUAL_TASKS_AI_MODE_CONTEXT_LIBRARY_CONVERTER_H_
#include <vector>
#include "components/contextual_tasks/public/contextual_task.h"
namespace contextual_search {
struct FileInfo;
}
namespace lens {
class UpdateThreadContextLibrary;
}
namespace contextual_tasks {
std::vector<UrlResource> ConvertAiModeContextToUrlResources(
const lens::UpdateThreadContextLibrary& message,
const std::vector<contextual_search::FileInfo>& local_contexts);
}
#endif