chromium/components/feed/core/v2/ios_shared_prefs.cc

// Copyright 2021 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/feed/core/v2/ios_shared_prefs.h"

#include "components/feed/core/common/pref_names.h"
#include "components/prefs/pref_service.h"

namespace feed {
namespace prefs {

namespace {
const char kNameKey[] =;
const char kIdKey[] =;
}  // namespace

void SetLastFetchHadNoticeCard(PrefService& pref_service, bool value) {}

bool GetLastFetchHadNoticeCard(const PrefService& pref_service) {}

void SetHasReachedClickAndViewActionsUploadConditions(PrefService& pref_service,
                                                      bool value) {}

bool GetHasReachedClickAndViewActionsUploadConditions(
    const PrefService& pref_service) {}

void IncrementNoticeCardViewsCount(PrefService& pref_service) {}

int GetNoticeCardViewsCount(const PrefService& pref_service) {}

void IncrementNoticeCardClicksCount(PrefService& pref_service) {}

int GetNoticeCardClicksCount(const PrefService& pref_service) {}

void SetExperiments(const Experiments& experiments, PrefService& pref_service) {}

Experiments GetExperiments(PrefService& pref_service) {}

void MigrateObsoleteFeedExperimentPref_Jun_2024(PrefService* prefs) {}

}  // namespace prefs
}  // namespace feed