blob: 6234c7e078dc7f3ee1c3af7b813b25885fb3ce37 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// 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_deleter.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
AppSessionService* AppSessionServiceFactory::GetForProfile(Profile* profile) {
return static_cast<AppSessionService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
AppSessionService* AppSessionServiceFactory::GetForProfileIfExisting(
Profile* profile) {
return static_cast<AppSessionService*>(
GetInstance()->GetServiceForBrowserContext(profile, false));
}
// static
AppSessionService* AppSessionServiceFactory::GetForProfileForSessionRestore(
Profile* profile) {
AppSessionService* service = GetForProfile(profile);
if (!service) {
// If the service has been shutdown, remove the reference to NULL for
// |profile| so GetForProfile will recreate it.
GetInstance()->Disassociate(profile);
service = GetForProfile(profile);
}
return service;
}
// static
void AppSessionServiceFactory::ShutdownForProfile(Profile* profile) {
DeleteSessionOnlyData(profile);
// We're about to exit, force creation of the session service if it hasn't
// been created yet. We do this to ensure session state matches the point in
// time the user exited.
AppSessionServiceFactory* factory = GetInstance();
factory->GetServiceForBrowserContext(profile, true);
// Shut down and remove the reference to the session service, and replace it
// with an explicit NULL to prevent it being recreated on the next access.
factory->BrowserContextShutdown(profile);
factory->BrowserContextDestroyed(profile);
factory->Associate(profile, nullptr);
}
AppSessionServiceFactory* AppSessionServiceFactory::GetInstance() {
return base::Singleton<AppSessionServiceFactory>::get();
}
AppSessionServiceFactory::AppSessionServiceFactory()
: BrowserContextKeyedServiceFactory(
"AppSessionService",
BrowserContextDependencyManager::GetInstance()) {}
AppSessionServiceFactory::~AppSessionServiceFactory() = default;
KeyedService* AppSessionServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
AppSessionService* service = nullptr;
service = new AppSessionService(static_cast<Profile*>(profile));
service->ResetFromCurrentBrowsers();
return service;
}
bool AppSessionServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
bool AppSessionServiceFactory::ServiceIsNULLWhileTesting() const {
return true;
}