#include "components/autofill/content/browser/content_autofill_driver_factory_test_api.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/content/browser/content_autofill_driver_test_api.h"
#include "components/autofill/core/browser/test_browser_autofill_manager.h"
namespace autofill {
std::unique_ptr<ContentAutofillDriverFactory>
ContentAutofillDriverFactoryTestApi::Create(content::WebContents* web_contents,
ContentAutofillClient* client) { … }
ContentAutofillDriverFactoryTestApi::ContentAutofillDriverFactoryTestApi(
ContentAutofillDriverFactory* factory)
: … { … }
std::unique_ptr<ContentAutofillDriver>
ContentAutofillDriverFactoryTestApi::ExchangeDriver(
content::RenderFrameHost* rfh,
std::unique_ptr<ContentAutofillDriver> new_driver) { … }
ContentAutofillDriver* ContentAutofillDriverFactoryTestApi::GetOrCreateDriver(
content::RenderFrameHost* rfh) { … }
ContentAutofillDriver* ContentAutofillDriverFactoryTestApi::GetDriver(
content::RenderFrameHost* rfh) { … }
}