2015-11-17 19:20:13 +01:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework 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 CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_MAC_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_MAC_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser/menu_runner.h"
|
|
|
|
|
|
|
|
#if __OBJC__
|
2017-12-07 22:44:24 +01:00
|
|
|
@class MenuControllerCocoa;
|
2015-11-17 19:20:13 +01:00
|
|
|
#else
|
2017-12-07 22:44:24 +01:00
|
|
|
class MenuControllerCocoa;
|
2015-11-17 19:20:13 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class CefMenuRunnerMac : public CefMenuRunner {
|
|
|
|
public:
|
|
|
|
CefMenuRunnerMac();
|
|
|
|
~CefMenuRunnerMac() override;
|
|
|
|
|
|
|
|
// CefMenuRunner methods.
|
2020-09-22 21:54:02 +02:00
|
|
|
bool RunContextMenu(AlloyBrowserHostImpl* browser,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefMenuModelImpl* model,
|
2015-11-17 19:20:13 +01:00
|
|
|
const content::ContextMenuParams& params) override;
|
|
|
|
void CancelContextMenu() override;
|
|
|
|
|
|
|
|
private:
|
2023-05-05 13:17:14 +02:00
|
|
|
MenuControllerCocoa* __strong menu_controller_;
|
2015-11-17 19:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_MAC_H_
|