blob: 7a9ae78e2433b8a0b6f557b4a12d181783ed6218 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/content/browser/test_content_autofill_client.h"
#include <memory>
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/core/browser/browser_autofill_manager.h"
#include "components/autofill/core/browser/test_browser_autofill_manager.h"
namespace autofill {
std::unique_ptr<AutofillManager> TestContentAutofillClient::CreateManager(
base::PassKey<ContentAutofillDriver> pass_key,
ContentAutofillDriver& driver) {
return std::make_unique<BrowserAutofillManager>(&driver, "en-US");
}
} // namespace autofill