chromium/components/segmentation_platform/internal/local_state_helper_impl.cc

// Copyright 2022 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/segmentation_platform/internal/local_state_helper_impl.h"

#include "components/prefs/pref_service.h"

namespace segmentation_platform {

// static
LocalStateHelper& LocalStateHelper::GetInstance() {}

LocalStateHelperImpl::LocalStateHelperImpl() = default;

LocalStateHelperImpl::~LocalStateHelperImpl() = default;

void LocalStateHelperImpl::Initialize(PrefService* local_state) {}

void LocalStateHelperImpl::SetPrefTime(const char* pref_name, base::Time time) {}

base::Time LocalStateHelperImpl::GetPrefTime(const char* pref_name) const {}

}  // namespace segmentation_platform