chromium/components/feed/core/common/pref_names.cc

// Copyright 2018 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/common/pref_names.h"

#include <string>

#include "build/build_config.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"

namespace feed {

namespace prefs {

const char kHostOverrideHost[] =;
const char kHostOverrideBlessNonce[] =;

const char kHasReachedClickAndViewActionsUploadConditions[] =;
const char kLastFetchHadNoticeCard[] =;
#if BUILDFLAG(IS_IOS)
const char kLastFetchHadLoggingEnabled[] =
    "feed.last_fetch_had_logging_enabled";
#endif  // BUILDFLAG(IS_IOS)
const char kNoticeCardViewsCount[] =;
const char kNoticeCardClicksCount[] =;

const char kThrottlerRequestCountListPrefName[] =;
const char kThrottlerLastRequestTime[] =;
const char kDebugStreamData[] =;
const char kRequestSchedule[] =;
const char kWebFeedsRequestSchedule[] =;
const char kMetricsData[] =;
const char kClientInstanceId[] =;
// This pref applies to all discover APIs despite the string.
const char kDiscoverAPIEndpointOverride[] =;
const char kEnableWebFeedFollowIntroDebug[] =;
const char kReliabilityLoggingIdSalt[] =;
const char kHasStoredData[] =;
const char kWebFeedContentOrder[] =;
const char kLastSeenFeedType[] =;
const char kFeedOnDeviceUserActionsCollector[] =;
const char kInfoCardStates[] =;
const char kHasSeenWebFeed[] =;
const char kLastBadgeAnimationTime[] =;
const char kExperimentsV3[] =;
const char kInfoCardTrackingStateDict[] =;

// Deprecated June 2024
const char kExperimentsV2Deprecated[] =;

}  // namespace prefs

// Deprecated prefs:
namespace {

void RegisterObsoletePrefsJun_2024(PrefRegistrySimple* registry) {}

}  // namespace

void RegisterProfilePrefs(PrefRegistrySimple* registry) {}

}  // namespace feed