#include "components/sync_sessions/session_sync_prefs.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
namespace sync_sessions {
namespace {
const char kLegacySyncSessionsGUID[] = …;
const char kLocalDataOutOfSync[] = …;
}
void SessionSyncPrefs::RegisterProfilePrefs(PrefRegistrySimple* registry) { … }
SessionSyncPrefs::SessionSyncPrefs(PrefService* pref_service)
: … { … }
SessionSyncPrefs::~SessionSyncPrefs() = default;
std::string SessionSyncPrefs::GetLegacySyncSessionsGUID() const { … }
void SessionSyncPrefs::ClearLegacySyncSessionsGUID() { … }
bool SessionSyncPrefs::GetLocalDataOutOfSync() { … }
void SessionSyncPrefs::SetLocalDataOutOfSync(bool local_data_out_of_sync) { … }
void SessionSyncPrefs::SetLegacySyncSessionsGUIDForTesting(
const std::string& guid) { … }
}