#ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_TEST_PASSWORD_AUTOFILL_AGENT_H_
#define COMPONENTS_AUTOFILL_CONTENT_RENDERER_TEST_PASSWORD_AUTOFILL_AGENT_H_
#include "components/autofill/content/renderer/password_autofill_agent.h"
namespace autofill {
#if BUILDFLAG(ARKWEB_TEST)
class TestPasswordAutofillAgent : public PasswordAutofillAgentExt {
#else
class TestPasswordAutofillAgent : public PasswordAutofillAgent {
#endif
public:
TestPasswordAutofillAgent(content::RenderFrame* render_frame,
blink::AssociatedInterfaceRegistry* registry);
~TestPasswordAutofillAgent() override;
private:
bool FrameCanAccessPasswordManager() override;
};
}
#endif