blob: 2949e3c5769d0e3b2415742e6f10704cd81543ce [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_UI_APP_LIST_SEARCH_APP_SERVICE_APP_RESULT_H_
#define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SERVICE_APP_RESULT_H_
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/app_list/search/app_result.h"
#include "chrome/services/app_service/public/mojom/types.mojom.h"
class AppListControllerDelegate;
class Profile;
namespace app_list {
class AppServiceAppResult : public AppResult {
public:
AppServiceAppResult(Profile* profile,
const std::string& app_id,
AppListControllerDelegate* controller,
bool is_recommendation);
~AppServiceAppResult() override;
private:
// ChromeSearchResult overrides:
void Open(int event_flags) override;
void GetContextMenuModel(GetMenuModelCallback callback) override;
AppContextMenu* GetAppContextMenu() override;
// AppContextMenuDelegate overrides:
void ExecuteLaunchCommand(int event_flags) override;
void Launch(int event_flags, apps::mojom::LaunchSource launch_source);
void OnLoadIcon(bool chip, apps::mojom::IconValuePtr icon_value);
apps::mojom::AppType app_type_;
bool is_platform_app_;
bool show_in_launcher_;
std::unique_ptr<AppContextMenu> context_menu_;
base::WeakPtrFactory<AppServiceAppResult> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(AppServiceAppResult);
};
} // namespace app_list
#endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SERVICE_APP_RESULT_H_