chromium/chrome/browser/enterprise/signals/system_signals_service_host_factory.cc

// Copyright 2022 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/enterprise/signals/system_signals_service_host_factory.h"

#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/services/system_signals/public/cpp/browser/system_signals_service_host_impl.h"
#include "components/device_signals/core/browser/system_signals_service_host.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/browser_context.h"

namespace enterprise_signals {

// static
SystemSignalsServiceHostFactory*
SystemSignalsServiceHostFactory::GetInstance() {}

// static
device_signals::SystemSignalsServiceHost*
SystemSignalsServiceHostFactory::GetForProfile(Profile* profile) {}

SystemSignalsServiceHostFactory::SystemSignalsServiceHostFactory()
    :{}

SystemSignalsServiceHostFactory::~SystemSignalsServiceHostFactory() = default;

KeyedService* SystemSignalsServiceHostFactory::BuildServiceInstanceFor(
    content::BrowserContext* context) const {}

}  // namespace enterprise_signals