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
|
// Copyright 2013 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_APPS_PLATFORM_APPS_SHORTCUT_MANAGER_H_
#define CHROME_BROWSER_APPS_PLATFORM_APPS_SHORTCUT_MANAGER_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_registry_observer.h"
#include "extensions/common/extension.h"
class Profile;
// This class manages the installation of shortcuts for any extension-based apps
// (Chrome Apps). Bookmark apps OS shortcut management is handled in
// web_app::AppShortcutManager and its subclasses.
//
// Long term, this class must be deleted together with all extension-based apps.
class AppShortcutManager : public KeyedService,
public extensions::ExtensionRegistryObserver,
public ProfileAttributesStorage::Observer {
public:
explicit AppShortcutManager(Profile* profile);
AppShortcutManager(const AppShortcutManager&) = delete;
AppShortcutManager& operator=(const AppShortcutManager&) = delete;
~AppShortcutManager() override;
// extensions::ExtensionRegistryObserver.
void OnExtensionWillBeInstalled(content::BrowserContext* browser_context,
const extensions::Extension* extension,
bool is_update,
const std::string& old_name) override;
void OnExtensionUninstalled(content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UninstallReason reason) override;
// ProfileAttributesStorage::Observer.
void OnProfileWillBeRemoved(const base::FilePath& profile_path) override;
static void SuppressShortcutsForTesting();
private:
void DeleteApplicationShortcuts(const extensions::Extension* extension);
raw_ptr<Profile> profile_;
base::ScopedObservation<ProfileAttributesStorage,
ProfileAttributesStorage::Observer>
profile_storage_observation_{this};
base::ScopedObservation<extensions::ExtensionRegistry,
extensions::ExtensionRegistryObserver>
extension_registry_observation_{this};
base::WeakPtrFactory<AppShortcutManager> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_APPS_PLATFORM_APPS_SHORTCUT_MANAGER_H_
|