chromium/chrome/browser/profiles/gaia_info_update_service_factory.cc

// Copyright 2012 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/profiles/gaia_info_update_service_factory.h"

#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/gaia_info_update_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/common/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"

GAIAInfoUpdateServiceFactory::GAIAInfoUpdateServiceFactory()
    :{}

GAIAInfoUpdateServiceFactory::~GAIAInfoUpdateServiceFactory() = default;

// static
GAIAInfoUpdateService* GAIAInfoUpdateServiceFactory::GetForProfile(
    Profile* profile) {}

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

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

bool GAIAInfoUpdateServiceFactory::ServiceIsNULLWhileTesting() const {}

bool GAIAInfoUpdateServiceFactory::ServiceIsCreatedWithBrowserContext() const {}