chromium/chrome/browser/ui/webui/whats_new/whats_new_storage_service_impl.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 "chrome/browser/ui/webui/whats_new/whats_new_storage_service_impl.h"

#include "base/containers/contains.h"
#include "base/values.h"
#include "chrome/common/chrome_version.h"
#include "chrome/common/pref_names.h"

namespace whats_new {
const base::Value::List& WhatsNewStorageServiceImpl::ReadModuleData() const {}

const base::Value::Dict& WhatsNewStorageServiceImpl::ReadEditionData() const {}

int WhatsNewStorageServiceImpl::GetModuleQueuePosition(
    const std::string_view module_name) const {}

std::optional<int> WhatsNewStorageServiceImpl::GetUsedVersion(
    const std::string_view edition_name) const {}

std::optional<std::string_view>
WhatsNewStorageServiceImpl::FindEditionForCurrentVersion() const {}

void WhatsNewStorageServiceImpl::SetModuleEnabled(
    const std::string_view module_name) {}

void WhatsNewStorageServiceImpl::ClearModule(
    const std::string_view module_name) {}

bool WhatsNewStorageServiceImpl::IsUsedEdition(
    const std::string_view edition_name) const {}

void WhatsNewStorageServiceImpl::SetEditionUsed(
    const std::string_view edition_name) {}

void WhatsNewStorageServiceImpl::ClearEdition(
    const std::string_view edition_name) {}

void WhatsNewStorageServiceImpl::Reset() {}

WhatsNewStorageServiceImpl::~WhatsNewStorageServiceImpl() = default;
}  // namespace whats_new