chromium/components/plus_addresses/settings/fake_plus_address_setting_service.cc

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

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

#include <memory>

namespace plus_addresses {

FakePlusAddressSettingService::FakePlusAddressSettingService() = default;

FakePlusAddressSettingService::~FakePlusAddressSettingService() = default;

bool FakePlusAddressSettingService::GetIsPlusAddressesEnabled() const {}

bool FakePlusAddressSettingService::GetHasAcceptedNotice() const {}

void FakePlusAddressSettingService::SetHasAcceptedNotice() {}

std::unique_ptr<syncer::DataTypeControllerDelegate>
FakePlusAddressSettingService::GetSyncControllerDelegate() {}

}  // namespace plus_addresses