2016-01-19 21:09:01 +01:00
|
|
|
// Copyright (c) 2016 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_VIEWS_MENU_RUNNER_VIEWS_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_VIEWS_MENU_RUNNER_VIEWS_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser/menu_runner.h"
|
|
|
|
|
|
|
|
class CefBrowserViewImpl;
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefMenuRunnerViews : public CefMenuRunner {
|
2016-01-19 21:09:01 +01:00
|
|
|
public:
|
|
|
|
// |browser_view| is guaranteed to outlive this object.
|
|
|
|
explicit CefMenuRunnerViews(CefBrowserViewImpl* browser_view);
|
|
|
|
|
|
|
|
// CefMenuRunner methods.
|
2020-09-22 21:54:02 +02:00
|
|
|
bool RunContextMenu(AlloyBrowserHostImpl* browser,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefMenuModelImpl* model,
|
|
|
|
const content::ContextMenuParams& params) override;
|
|
|
|
void CancelContextMenu() override;
|
2021-04-21 00:52:34 +02:00
|
|
|
bool FormatLabel(std::u16string& label) override;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
CefBrowserViewImpl* browser_view_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_VIEWS_MENU_RUNNER_VIEWS_H_
|