// Copyright 2020 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/ash/system_web_apps/apps/os_settings_web_app_info.h"
#include <memory>
#include "ash/constants/ash_features.h"
#include "ash/public/cpp/resources/grit/ash_public_unscaled_resources.h"
#include "chrome/browser/ash/system_web_apps/apps/system_web_app_install_utils.h"
#include "chrome/browser/web_applications/mojom/user_display_mode.mojom.h"
#include "chrome/browser/web_applications/web_app_constants.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/os_settings_resources.h"
#include "chromeos/strings/grit/chromeos_strings.h"
#include "ui/base/l10n/l10n_util.h"
std::unique_ptr<web_app::WebAppInstallInfo>
CreateWebAppInfoForOSSettingsSystemWebApp() {
GURL start_url = GURL(chrome::kChromeUIOSSettingsURL);
auto info =
web_app::CreateSystemWebAppInstallInfoWithStartUrlAsIdentity(start_url);
info->scope = GURL(chrome::kChromeUIOSSettingsURL);
info->title = l10n_util::GetStringUTF16(IDS_SETTINGS_SETTINGS);
web_app::CreateIconInfoForSystemWebApp(
info->start_url(),
{
{"icon-192.png", 192, IDR_SETTINGS_LOGO_192},
},
*info);
info->theme_color =
web_app::GetDefaultBackgroundColor(/*use_dark_mode=*/false);
info->dark_mode_theme_color =
web_app::GetDefaultBackgroundColor(/*use_dark_mode=*/true);
info->background_color = info->theme_color;
info->dark_mode_background_color = info->dark_mode_theme_color;
info->display_mode = blink::mojom::DisplayMode::kStandalone;
info->user_display_mode = web_app::mojom::UserDisplayMode::kStandalone;
return info;
}
OSSettingsSystemAppDelegate::OSSettingsSystemAppDelegate(Profile* profile)
: ash::SystemWebAppDelegate(ash::SystemWebAppType::SETTINGS,
"OSSettings",
GURL(chrome::kChromeUISettingsURL),
profile) {}
std::unique_ptr<web_app::WebAppInstallInfo>
OSSettingsSystemAppDelegate::GetWebAppInfo() const {
return CreateWebAppInfoForOSSettingsSystemWebApp();
}
bool OSSettingsSystemAppDelegate::ShouldCaptureNavigations() const {
return true;
}
gfx::Size OSSettingsSystemAppDelegate::GetMinimumWindowSize() const {
return {300, 100};
}
std::vector<std::string>
OSSettingsSystemAppDelegate::GetAppIdsToUninstallAndReplace() const {
return {web_app::kSettingsAppId, ash::kInternalAppIdSettings};
}
bool OSSettingsSystemAppDelegate::ShouldAnimateThemeChanges() const {
return ash::features::IsSettingsAppThemeChangeAnimationEnabled();
}