blob: a112f6d52cb68895205e51a71fd2fceda67db715 [file] [log] [blame]
// 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/session_service_lookup.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/app_session_service_factory.h"
#include "chrome/browser/sessions/session_service_base.h"
#include "chrome/browser/sessions/session_service_factory.h"
bool IsRelevantToAppSessionService(Browser::Type type) {
return (type == Browser::Type::TYPE_APP ||
type == Browser::Type::TYPE_APP_POPUP);
}
bool IsRelevantToAppSessionService(content::WebContents* web_contents) {
return IsRelevantToAppSessionService(
SessionServiceBase::GetBrowserTypeFromWebContents(web_contents));
}
bool IsRelevantToAppSessionService(Browser* browser) {
return IsRelevantToAppSessionService(browser->type());
}
SessionServiceBase* GetAppropriateSessionServiceForProfile(
const Browser* browser) {
if (IsRelevantToAppSessionService(browser->type()))
return AppSessionServiceFactory::GetForProfile(browser->profile());
return SessionServiceFactory::GetForProfile(browser->profile());
}
SessionServiceBase* GetAppropriateSessionServiceForSessionRestore(
const Browser* browser) {
if (IsRelevantToAppSessionService(browser->type()))
return AppSessionServiceFactory::GetForProfileForSessionRestore(
browser->profile());
return SessionServiceFactory::GetForProfileForSessionRestore(
browser->profile());
}
SessionServiceBase* GetAppropriateSessionServiceIfExisting(
const Browser* browser) {
if (IsRelevantToAppSessionService(browser->type()))
return AppSessionServiceFactory::GetForProfileIfExisting(
browser->profile());
return SessionServiceFactory::GetForProfileIfExisting(browser->profile());
}