chromium/components/sync_sessions/session_sync_prefs.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/sync_sessions/session_sync_prefs.h"

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

namespace sync_sessions {
namespace {

// Legacy GUID to identify this client, no longer newly populated by modern
// clients but honored if present.
const char kLegacySyncSessionsGUID[] =;

const char kLocalDataOutOfSync[] =;

}  // namespace

// static
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) {}

}  // namespace sync_sessions