#ifndef CHROME_RENDERER_AUTOFILL_PASSWORD_GENERATION_TEST_UTILS_H_
#define CHROME_RENDERER_AUTOFILL_PASSWORD_GENERATION_TEST_UTILS_H_
#include <string>
#include <vector>
namespace blink {
class WebDocument;
}
namespace autofill {
class PasswordGenerationAgent;
void SetFoundFormEligibleForGeneration(
PasswordGenerationAgent* generation_agent,
blink::WebDocument document,
const char* new_password_id,
const char* confirm_password_id);
std::string CreateScriptToRegisterListeners(
const char* const element_name,
std::vector<std::u16string>* variables_to_check);
}
#endif