File: chrome_shelf_item_factory.cc

package info (click to toggle)
chromium 120.0.6099.224-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,112,112 kB
  • sloc: cpp: 32,907,025; ansic: 8,148,123; javascript: 3,679,536; python: 2,031,248; asm: 959,718; java: 804,675; xml: 617,256; sh: 111,417; objc: 100,835; perl: 88,443; cs: 53,032; makefile: 29,579; fortran: 24,137; php: 21,162; tcl: 21,147; sql: 20,809; ruby: 17,735; pascal: 12,864; yacc: 8,045; lisp: 3,388; lex: 1,323; ada: 727; awk: 329; jsp: 267; csh: 117; exp: 43; sed: 37
file content (98 lines) | stat: -rw-r--r-- 4,284 bytes parent folder | download
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
97
98
// 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/ui/ash/shelf/chrome_shelf_item_factory.h"

#include "ash/constants/ash_features.h"
#include "ash/public/cpp/shelf_item.h"
#include "ash/public/cpp/shelf_types.h"
#include "chrome/browser/apps/app_service/app_service_proxy.h"
#include "chrome/browser/apps/app_service/app_service_proxy_factory.h"
#include "chrome/browser/ash/app_list/arc/arc_app_utils.h"
#include "chrome/browser/ui/ash/shelf/app_service/app_service_shortcut_shelf_item_controller.h"
#include "chrome/browser/ui/ash/shelf/app_shortcut_shelf_item_controller.h"
#include "chrome/browser/ui/ash/shelf/arc_playstore_shortcut_shelf_item_controller.h"
#include "chrome/browser/ui/ash/shelf/browser_app_shelf_item_controller.h"
#include "chrome/browser/ui/ash/shelf/chrome_shelf_controller_util.h"
#include "chrome/browser/ui/ash/shelf/shelf_controller_helper.h"
#include "chrome/browser/ui/ash/shelf/standalone_browser_extension_app_shelf_item_controller.h"
#include "chrome/browser/web_applications/web_app_utils.h"
#include "chromeos/constants/chromeos_features.h"
#include "components/services/app_service/public/cpp/app_types.h"
#include "components/services/app_service/public/cpp/shortcut/shortcut.h"
#include "components/services/app_service/public/cpp/shortcut/shortcut_registry_cache.h"
#include "components/services/app_service/public/cpp/types_util.h"

ChromeShelfItemFactory::ChromeShelfItemFactory() = default;

ChromeShelfItemFactory::~ChromeShelfItemFactory() = default;

std::unique_ptr<ash::ShelfItem> ChromeShelfItemFactory::CreateShelfItemForApp(
    const ash::ShelfID& shelf_id,
    ash::ShelfItemStatus status,
    ash::ShelfItemType shelf_item_type,
    const std::u16string& title) {
  auto item = std::make_unique<ash::ShelfItem>();
  item->id = shelf_id;
  item->status = status;
  item->type = shelf_item_type;
  item->title = title;

  const std::string& app_id = shelf_id.app_id;
  item->app_status = ShelfControllerHelper::GetAppStatus(profile_, app_id);

  if (ash::features::ArePromiseIconsEnabled()) {
    item->progress =
        ShelfControllerHelper::GetPromiseAppProgress(profile_, app_id);
    item->is_promise_app =
        ShelfControllerHelper::IsPromiseApp(profile_, app_id);
    item->package_id = ShelfControllerHelper::GetAppPackageId(profile_, app_id);

    if (item->is_promise_app) {
      // TODO(b/302408509): Temporary fix for ShelfViews crash that happens only
      // when a ShelfItem created by sync has kPending/ kInstalling app states.
      item->app_status = ash::AppStatus::kReady;
    }
  }

  return item;
}

std::unique_ptr<ash::ShelfItemDelegate>
ChromeShelfItemFactory::CreateShelfItemDelegateForAppId(
    const std::string& app_id) {
  if (app_id == arc::kPlayStoreAppId) {
    return std::make_unique<ArcPlaystoreShortcutShelfItemController>();
  }

  auto* proxy =
      apps::AppServiceProxyFactory::GetInstance()->GetForProfile(profile_);

  // TODO(crbug.com/1412708): Update the calling methods naming to avoid the
  // usage of app, to indicate that we could also create a shortcut shelf item
  // using the shortcut id.
  if ((chromeos::features::IsCrosWebAppShortcutUiUpdateEnabled()) &&
      proxy->ShortcutRegistryCache()->HasShortcut(apps::ShortcutId(app_id))) {
    return std::make_unique<AppServiceShortcutShelfItemController>(
        ash::ShelfID(app_id));
  }

  auto app_type = proxy->AppRegistryCache().GetAppType(app_id);

  // Note: In addition to other kinds of web apps, standalone browser hosted
  // apps are also handled by browser app shelf item controller.
  if (BrowserAppShelfControllerShouldHandleApp(app_id, profile_)) {
    return std::make_unique<BrowserAppShelfItemController>(ash::ShelfID(app_id),
                                                           profile_);
  }

  // Standalone browser platform apps are handled by standalone browser
  // extension app shelf item controller.
  if (app_type == apps::AppType::kStandaloneBrowserChromeApp) {
    return std::make_unique<StandaloneBrowserExtensionAppShelfItemController>(
        ash::ShelfID(app_id));
  }

  return std::make_unique<AppShortcutShelfItemController>(ash::ShelfID(app_id));
}