chromium/components/plus_addresses/settings/plus_address_setting_service_impl.h

// 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_PLUS_ADDRESS_SETTING_SERVICE_IMPL_H_
#define COMPONENTS_PLUS_ADDRESSES_SETTINGS_PLUS_ADDRESS_SETTING_SERVICE_IMPL_H_

#include <memory>
#include <string_view>

#include "components/plus_addresses/settings/plus_address_setting_service.h"

namespace syncer {
class DataTypeControllerDelegate;
}

namespace plus_addresses {

class PlusAddressSettingSyncBridge;

// Manages settings for `PlusAddressService`. These settings differ from regular
// prefs, since they originate from the user's account and are available beyond
// Chrome.
class PlusAddressSettingServiceImpl : public PlusAddressSettingService {};

}  // namespace plus_addresses

#endif  // COMPONENTS_PLUS_ADDRESSES_SETTINGS_PLUS_ADDRESS_SETTING_SERVICE_IMPL_H_