chromium/chrome/browser/sessions/app_session_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/sessions/app_session_service_factory.h"

#include "build/build_config.h"
#include "chrome/browser/buildflags.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/app_session_service.h"
#include "chrome/browser/sessions/session_data_service.h"
#include "chrome/browser/sessions/session_data_service_factory.h"

// static
AppSessionService* AppSessionServiceFactory::GetForProfile(Profile* profile) {}

// static
AppSessionService* AppSessionServiceFactory::GetForProfileIfExisting(
    Profile* profile) {}

// static
AppSessionService* AppSessionServiceFactory::GetForProfileForSessionRestore(
    Profile* profile) {}

// static
void AppSessionServiceFactory::ShutdownForProfile(Profile* profile) {}

AppSessionServiceFactory* AppSessionServiceFactory::GetInstance() {}

AppSessionServiceFactory::AppSessionServiceFactory()
    :{}

AppSessionServiceFactory::~AppSessionServiceFactory() = default;

std::unique_ptr<KeyedService>
AppSessionServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* profile) const {}

bool AppSessionServiceFactory::ServiceIsCreatedWithBrowserContext() const {}

bool AppSessionServiceFactory::ServiceIsNULLWhileTesting() const {}