chromium/components/keyed_service/core/keyed_service_base_factory.cc

// Copyright 2014 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/keyed_service/core/keyed_service_base_factory.h"

#include <type_traits>

#include "base/supports_user_data.h"
#include "base/trace_event/trace_event.h"
#include "components/keyed_service/core/dependency_manager.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"

KeyedServiceBaseFactory::KeyedServiceBaseFactory(const char* service_name,
                                                 DependencyManager* manager,
                                                 Type type)
    :{}

KeyedServiceBaseFactory::~KeyedServiceBaseFactory() {}

void KeyedServiceBaseFactory::DependsOn(KeyedServiceBaseFactory* rhs) {}

void KeyedServiceBaseFactory::AssertContextWasntDestroyed(void* context) const {}

void KeyedServiceBaseFactory::MarkContextLive(void* context) {}

bool KeyedServiceBaseFactory::ServiceIsRequiredForContextInitialization()
    const {}

bool KeyedServiceBaseFactory::ServiceIsCreatedWithContext() const {}

bool KeyedServiceBaseFactory::ServiceIsNULLWhileTesting() const {}

void KeyedServiceBaseFactory::ContextDestroyed(void* context) {}

void KeyedServiceBaseFactory::CreateServiceNowForTesting(void* context) {}