// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_TEST_API_H_ #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_TEST_API_H_ #include "components/autofill/content/browser/content_autofill_driver.h" #include "components/autofill/core/browser/autofill_driver_test_api.h" namespace autofill { // Exposes some testing operations for ContentAutofillDriver. class ContentAutofillDriverTestApi : public AutofillDriverTestApi { … }; inline ContentAutofillDriverTestApi test_api(ContentAutofillDriver& driver) { … } } // namespace autofill #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_TEST_API_H_