// 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 COMPONENTS_PLUS_ADDRESSES_SETTINGS_FAKE_PLUS_ADDRESS_SETTING_SERVICE_H_ #define COMPONENTS_PLUS_ADDRESSES_SETTINGS_FAKE_PLUS_ADDRESS_SETTING_SERVICE_H_ #include <memory> #include "components/plus_addresses/settings/plus_address_setting_service.h" namespace plus_addresses { // Fake implementation of `PlusAddressSettingService` that does not interact // with sync. class FakePlusAddressSettingService : public PlusAddressSettingService { … }; } // namespace plus_addresses #endif // COMPONENTS_PLUS_ADDRESSES_SETTINGS_FAKE_PLUS_ADDRESS_SETTING_SERVICE_H_