chromium/chrome/browser/safe_browsing/network_context_service_factory.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 "chrome/browser/safe_browsing/network_context_service_factory.h"

#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/safe_browsing/network_context_service.h"

namespace safe_browsing {

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

// static
NetworkContextService* NetworkContextServiceFactory::GetForBrowserContext(
    content::BrowserContext* context) {}

NetworkContextServiceFactory::NetworkContextServiceFactory()
    :{}

NetworkContextServiceFactory::~NetworkContextServiceFactory() = default;

std::unique_ptr<KeyedService>
NetworkContextServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

}  // namespace safe_browsing