#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"
AppSessionService* AppSessionServiceFactory::GetForProfile(Profile* profile) { … }
AppSessionService* AppSessionServiceFactory::GetForProfileIfExisting(
Profile* profile) { … }
AppSessionService* AppSessionServiceFactory::GetForProfileForSessionRestore(
Profile* profile) { … }
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 { … }