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_MENU_RUNNER_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_MENU_RUNNER_H_
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "base/macros.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
#include "base/strings/string16.h"
|
|
|
|
|
|
|
|
namespace content {
|
|
|
|
struct ContextMenuParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefBrowserHostImpl;
|
2016-01-19 21:09:01 +01:00
|
|
|
class CefMenuModelImpl;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Provides platform-specific menu implementations for CefMenuCreator.
|
|
|
|
class CefMenuRunner {
|
|
|
|
public:
|
|
|
|
virtual bool RunContextMenu(CefBrowserHostImpl* browser,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefMenuModelImpl* model,
|
2015-11-17 19:20:13 +01:00
|
|
|
const content::ContextMenuParams& params) = 0;
|
|
|
|
virtual void CancelContextMenu() {}
|
|
|
|
virtual bool FormatLabel(base::string16& label) { return false; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Allow deletion via scoped_ptr only.
|
2015-12-09 17:10:16 +01:00
|
|
|
friend std::default_delete<CefMenuRunner>;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
CefMenuRunner() {}
|
|
|
|
virtual ~CefMenuRunner() {}
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefMenuRunner);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_MENU_RUNNER_H_
|