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_WIN_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_WIN_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser/menu_runner.h"
|
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include "libcef/browser/native/native_menu_win.h"
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
class CefMenuRunnerWin : public CefMenuRunner {
|
|
|
|
public:
|
|
|
|
CefMenuRunnerWin();
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
private:
|
2016-07-14 03:35:07 +02:00
|
|
|
std::unique_ptr<views::CefNativeMenuWin> menu_;
|
2015-11-17 19:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_MENU_RUNNER_WIN_H_
|