1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// 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) {
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) {
if (SessionDataServiceFactory::GetForProfile(profile))
SessionDataServiceFactory::GetForProfile(profile)->StartCleanup();
// 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() {
static base::NoDestructor<AppSessionServiceFactory> instance;
return instance.get();
}
AppSessionServiceFactory::AppSessionServiceFactory()
: ProfileKeyedServiceFactory(
"AppSessionService",
ProfileSelections::Builder()
.WithRegular(ProfileSelection::kOriginalOnly)
// TODO(crbug.com/40257657): Check if this service is needed in
// Guest mode.
.WithGuest(ProfileSelection::kOriginalOnly)
// TODO(crbug.com/41488885): Check if this service is needed for
// Ash Internals.
.WithAshInternals(ProfileSelection::kOriginalOnly)
.Build()) {
// Ensure that session data is cleared before session restore can happen.
DependsOn(SessionDataServiceFactory::GetInstance());
}
AppSessionServiceFactory::~AppSessionServiceFactory() = default;
std::unique_ptr<KeyedService>
AppSessionServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* profile) const {
std::unique_ptr<AppSessionService> service =
std::make_unique<AppSessionService>(static_cast<Profile*>(profile));
service->ResetFromCurrentBrowsers();
return service;
}
bool AppSessionServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
bool AppSessionServiceFactory::ServiceIsNULLWhileTesting() const {
return true;
}
|