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_LINUX_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_LINUX_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser/menu_runner.h"
|
|
|
|
|
|
|
|
#include "ui/views/controls/menu/menu_runner.h"
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefMenuRunnerLinux : public CefMenuRunner {
|
2015-11-17 19:20:13 +01:00
|
|
|
public:
|
|
|
|
CefMenuRunnerLinux();
|
|
|
|
|
|
|
|
// 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;
|
2021-04-21 00:52:34 +02:00
|
|
|
bool FormatLabel(std::u16string& label) override;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
private:
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<views::MenuRunner> menu_;
|
2015-11-17 19:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_LINUX_H_
|