// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_AUTOFILL_MOCK_AUTOFILL_AGENT_H_ #define CHROME_BROWSER_AUTOFILL_MOCK_AUTOFILL_AGENT_H_ #include "base/memory/weak_ptr.h" #include "components/autofill/content/common/mojom/autofill_agent.mojom.h" #include "mojo/public/cpp/bindings/associated_receiver_set.h" #include "testing/gmock/include/gmock/gmock.h" namespace content { class RenderFrameHost; } namespace autofill { class MockAutofillAgent : public mojom::AutofillAgent { … }; } // namespace autofill #endif // CHROME_BROWSER_AUTOFILL_MOCK_AUTOFILL_AGENT_H_