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
|
// 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_shortcut_shelf_item_controller.h"
#include "chrome/browser/ui/ash/shelf/arc_playstore_shortcut_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/web_applications/web_app_utils.h"
#include "chromeos/ash/experiences/arc/app/arc_app_constants.h"
#include "chromeos/constants/chromeos_features.h"
#include "components/services/app_service/public/cpp/app_types.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);
}
return item;
}
std::unique_ptr<ash::ShelfItemDelegate>
ChromeShelfItemFactory::CreateShelfItemDelegateForAppId(
const std::string& app_id) {
if (app_id == arc::kPlayStoreAppId) {
return std::make_unique<ArcPlaystoreShortcutShelfItemController>();
}
return std::make_unique<AppShortcutShelfItemController>(ash::ShelfID(app_id));
}
|