chromium/chrome/browser/ash/system_web_apps/apps/vc_background_ui/vc_background_ui_system_app_delegate.cc

// Copyright 2023 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/vc_background_ui/vc_background_ui_system_app_delegate.h"

#include <memory>
#include <string>

#include "ash/constants/ash_features.h"
#include "ash/webui/grit/ash_vc_background_resources.h"
#include "ash/webui/system_apps/public/system_web_app_type.h"
#include "ash/webui/vc_background_ui/url_constants.h"
#include "chrome/browser/ash/system_web_apps/apps/personalization_app/personalization_app_utils.h"
#include "chrome/browser/ash/system_web_apps/apps/system_web_app_install_utils.h"
#include "chrome/browser/ash/system_web_apps/types/system_web_app_delegate.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/web_applications/mojom/user_display_mode.mojom-shared.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chromeos/strings/grit/chromeos_strings.h"
#include "components/manta/features.h"
#include "third_party/blink/public/mojom/manifest/display_mode.mojom-shared.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/display/screen.h"
#include "url/gurl.h"

namespace ash::vc_background_ui {

VcBackgroundUISystemAppDelegate::VcBackgroundUISystemAppDelegate(
    Profile* profile)
    : SystemWebAppDelegate(
          SystemWebAppType::VC_BACKGROUND,
          "VcBackground",
          GURL(ash::vc_background_ui::kChromeUIVcBackgroundURL),
          profile) {}

std::unique_ptr<web_app::WebAppInstallInfo>
VcBackgroundUISystemAppDelegate::GetWebAppInfo() const {
  GURL start_url = GURL(kChromeUIVcBackgroundURL);
  auto info =
      web_app::CreateSystemWebAppInstallInfoWithStartUrlAsIdentity(start_url);
  info->scope = GURL(kChromeUIVcBackgroundURL);
  // TODO(b/311416410) real title and icon.
  info->title = l10n_util::GetStringUTF16(IDS_VC_BACKGROUND_APP_TITLE);

  web_app::CreateIconInfoForSystemWebApp(
      info->start_url(),
      {
          {
              .icon_name = "vc_background_ui_app_icon_128.png",
              .size = 128,
              .resource_id =
                  IDR_ASH_VC_BACKGROUND_VC_BACKGROUND_UI_APP_ICON_128_PNG,
          },
          {
              .icon_name = "vc_background_ui_app_icon_256.png",
              .size = 256,
              .resource_id =
                  IDR_ASH_VC_BACKGROUND_VC_BACKGROUND_UI_APP_ICON_256_PNG,
          },
      },
      *info);

  info->display_mode = blink::mojom::DisplayMode::kStandalone;
  info->user_display_mode = web_app::mojom::UserDisplayMode::kStandalone;
  return info;
}

gfx::Size VcBackgroundUISystemAppDelegate::GetMinimumWindowSize() const {
  return {600, 420};
}

gfx::Rect VcBackgroundUISystemAppDelegate::GetDefaultBounds(
    Browser* browser) const {
  gfx::Rect bounds =
      display::Screen::GetScreen()->GetDisplayForNewWindows().work_area();
  bounds.ClampToCenteredSize({826, 608});
  return bounds;
}

bool VcBackgroundUISystemAppDelegate::IsAppEnabled() const {
  return ::ash::features::IsVcBackgroundReplaceEnabled() &&
         manta::features::IsMantaServiceEnabled() &&
         personalization_app::IsEligibleForSeaPen(profile());
}

bool VcBackgroundUISystemAppDelegate::ShouldShowInLauncher() const {
  return false;
}

bool VcBackgroundUISystemAppDelegate::ShouldShowInSearchAndShelf() const {
  return false;
}

bool VcBackgroundUISystemAppDelegate::ShouldCaptureNavigations() const {
  return true;
}

}  // namespace ash::vc_background_ui