chromium/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager_test_api.h

// 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.

#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CROWDSOURCING_AUTOFILL_CROWDSOURCING_MANAGER_TEST_API_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_CROWDSOURCING_AUTOFILL_CROWDSOURCING_MANAGER_TEST_API_H_

#include <memory>

#include "base/memory/ptr_util.h"
#include "base/memory/raw_ref.h"
#include "base/time/time.h"
#include "components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.h"

namespace autofill {

// Friend class to AutofillCrowdsourcingManager to allow tests to interact with
// and query the internal components of the class.
class AutofillCrowdsourcingManagerTestApi {};

inline AutofillCrowdsourcingManagerTestApi test_api(
    AutofillCrowdsourcingManager& manager) {}

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_CROWDSOURCING_AUTOFILL_CROWDSOURCING_MANAGER_TEST_API_H_