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
|
// 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.
#ifndef CHROME_BROWSER_UI_ASH_DESKS_DESKS_TEMPLATES_APP_LAUNCH_HANDLER_H_
#define CHROME_BROWSER_UI_ASH_DESKS_DESKS_TEMPLATES_APP_LAUNCH_HANDLER_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ash/app_restore/app_launch_handler.h"
class Profile;
namespace apps {
enum class AppTypeName;
} // namespace apps
namespace app_restore {
class DeskTemplateReadHandler;
} // namespace app_restore
namespace ash {
class DeskTemplate;
} // namespace ash
// The DesksTemplatesAppLaunchHandler class is passed a profile, and will launch
// apps and web pages based on the template or coral group. Note that a new
// handler should be created for each launch.
// TODO: Rename this to `DeskAppLaunchHandler`.
class DesksTemplatesAppLaunchHandler : public ash::AppLaunchHandler {
public:
enum class Type {
kTemplate = 0,
kCoral,
};
DesksTemplatesAppLaunchHandler(Profile* profile, Type type);
DesksTemplatesAppLaunchHandler(const DesksTemplatesAppLaunchHandler&) =
delete;
DesksTemplatesAppLaunchHandler& operator=(
const DesksTemplatesAppLaunchHandler&) = delete;
~DesksTemplatesAppLaunchHandler() override;
// Returns a unique ID for desk launch. These IDs are used so the read handler
// knows which launch to associate with. Call this before calling
// `LaunchTemplate()` or `LaunchCoralGroup()`.
static int32_t GetNextLaunchId();
// Launch the given template.
void LaunchTemplate(const ash::DeskTemplate& desk_template,
int32_t launch_id);
// Launch the given group.
void LaunchCoralGroup(std::unique_ptr<app_restore::RestoreData> restore_data,
int32_t launch_id);
protected:
// chromeos::AppLaunchHandler:
void RecordRestoredAppLaunch(apps::AppTypeName app_type_name) override;
bool ShouldLaunchSystemWebAppOrChromeApp(
const std::string& app_id,
const app_restore::RestoreData::LaunchList& launch_list) override;
void OnExtensionLaunching(const std::string& app_id) override;
base::WeakPtr<ash::AppLaunchHandler> GetWeakPtrAppLaunchHandler() override;
private:
// Go through the restore data launch list and launches the browser windows.
void LaunchBrowsers();
// Launches ARC apps if they are supported.
void MaybeLaunchArcApps();
// Notifies observers that a single instance app has moved.
void NotifyMovedSingleInstanceApp(int32_t window_id);
// Checks to see if the browser app with `app_name` is installed.
bool IsBrowserAppInstalled(const std::string& app_name);
const Type type_;
// Cached convenience pointer to the desk template read handler.
const raw_ptr<app_restore::DeskTemplateReadHandler> read_handler_;
// The ID of the specific launch this handler deals with.
int32_t launch_id_ = 0;
base::WeakPtrFactory<DesksTemplatesAppLaunchHandler> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_UI_ASH_DESKS_DESKS_TEMPLATES_APP_LAUNCH_HANDLER_H_
|