#ifndef CEF_LIBCEF_BROWSER_MENU_RUNNER_H_
#define CEF_LIBCEF_BROWSER_MENU_RUNNER_H_
#include <memory>
#include <string>
namespace content {
struct ContextMenuParams;
}
class AlloyBrowserHostImpl;
class CefMenuModelImpl;
class CefMenuRunner {
public:
CefMenuRunner(const CefMenuRunner&) = delete;
CefMenuRunner& operator=(const CefMenuRunner&) = delete;
virtual bool RunContextMenu(AlloyBrowserHostImpl* browser,
CefMenuModelImpl* model,
const content::ContextMenuParams& params) = 0;
virtual void CancelContextMenu() {}
virtual bool FormatLabel(std::u16string& label) { return false; }
protected:
friend std::default_delete<CefMenuRunner>;
CefMenuRunner() = default;
virtual ~CefMenuRunner() = default;
};
#endif