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

#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/safe_browsing/advanced_protection_status_manager.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "content/public/browser/browser_context.h"

namespace {

std::unique_ptr<KeyedService> BuildService(content::BrowserContext* context) {}

}  // namespace

namespace safe_browsing {

// static
AdvancedProtectionStatusManager*
AdvancedProtectionStatusManagerFactory::GetForProfile(Profile* profile) {}

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

// static
BrowserContextKeyedServiceFactory::TestingFactory
AdvancedProtectionStatusManagerFactory::GetDefaultFactoryForTesting() {}

AdvancedProtectionStatusManagerFactory::AdvancedProtectionStatusManagerFactory()
    :{}

AdvancedProtectionStatusManagerFactory::
    ~AdvancedProtectionStatusManagerFactory() = default;

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

bool AdvancedProtectionStatusManagerFactory::
    ServiceIsCreatedWithBrowserContext() const {}

}  // namespace safe_browsing