blob: f27a868a8cb55a0cf6ea97805e43f4db06941648 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_INSTALL_MANAGER_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_INSTALL_MANAGER_H_
#include <memory>
#include "base/callback.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/web_applications/components/install_manager.h"
#include "chrome/browser/web_applications/components/web_app_install_utils.h"
#include "content/public/browser/web_contents_observer.h"
class Profile;
struct WebApplicationInfo;
namespace blink {
struct Manifest;
}
namespace content {
class WebContents;
}
namespace web_app {
class InstallFinalizer;
class WebAppDataRetriever;
class WebAppInstallManager final : public InstallManager,
content::WebContentsObserver {
public:
WebAppInstallManager(Profile* profile,
std::unique_ptr<InstallFinalizer> install_finalizer);
~WebAppInstallManager() override;
// InstallManager:
bool CanInstallWebApp(content::WebContents* web_contents) override;
void InstallWebApp(content::WebContents* contents,
bool force_shortcut_app,
WebAppInstallDialogCallback dialog_callback,
OnceInstallCallback callback) override;
// WebContentsObserver:
void WebContentsDestroyed() override;
void SetDataRetrieverForTesting(
std::unique_ptr<WebAppDataRetriever> data_retriever);
void SetInstallFinalizerForTesting(
std::unique_ptr<InstallFinalizer> install_finalizer);
private:
void CallInstallCallback(const AppId& app_id, InstallResultCode code);
void ReturnError(InstallResultCode code);
// Checks typical errors like WebContents destroyed.
bool InstallInterrupted() const;
void OnGetWebApplicationInfo(
bool force_shortcut_app,
std::unique_ptr<WebApplicationInfo> web_app_info);
void OnDidPerformInstallableCheck(
std::unique_ptr<WebApplicationInfo> web_app_info,
bool force_shortcut_app,
const blink::Manifest& manifest,
bool is_installable);
void OnIconsRetrieved(std::unique_ptr<WebApplicationInfo> web_app_info,
ForInstallableSite for_installable_site,
IconsMap icons_map);
void OnDialogCompleted(bool user_accepted,
std::unique_ptr<WebApplicationInfo> web_app_info);
void OnInstallFinalized(const AppId& app_id, InstallResultCode code);
// Saved callbacks:
WebAppInstallDialogCallback dialog_callback_;
OnceInstallCallback install_callback_;
std::unique_ptr<WebAppDataRetriever> data_retriever_;
std::unique_ptr<InstallFinalizer> install_finalizer_;
Profile* profile_;
base::WeakPtrFactory<WebAppInstallManager> weak_ptr_factory_{this};
DISALLOW_COPY_AND_ASSIGN(WebAppInstallManager);
};
} // namespace web_app
#endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_INSTALL_MANAGER_H_