#ifndef UI_APP_LIST_VIEWS_APPS_GRID_VIEW_DELEGATE_H_
#define UI_APP_LIST_VIEWS_APPS_GRID_VIEW_DELEGATE_H_
#include <string>
#include "base/callback_forward.h"
#include "ui/app_list/app_list_export.h"
namespace base {
class FilePath;
}
namespace app_list {
class AppListItem;
class APP_LIST_EXPORT AppsGridViewDelegate {
public:
virtual void ActivateApp(AppListItem* item, int event_flags) = 0;
virtual void GetShortcutPathForApp(
const std::string& app_id,
const base::Callback<void(const base::FilePath&)>& callback) = 0;
protected:
virtual ~AppsGridViewDelegate() {}
};
}
#endif