mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 76.0.3809.0 (#665002)
OSR tests will be fixed by a follow-up merge of Viz support (see issue #2575).
This commit is contained in:
committed by
Marshall Greenblatt
parent
5892ffc382
commit
cc0db5f166
@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=65bbd880228104da2b65abf2c2a75acd5d698ecd$
|
||||
// $hash=0d2a3ffb1ec2b78d3784650f8720bd24a44dfd17$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/views/menu_button_ctocpp.h"
|
||||
@ -32,8 +32,7 @@
|
||||
NO_SANITIZE("cfi-icall")
|
||||
CefRefPtr<CefMenuButton> CefMenuButton::CreateMenuButton(
|
||||
CefRefPtr<CefMenuButtonDelegate> delegate,
|
||||
const CefString& text,
|
||||
bool with_frame) {
|
||||
const CefString& text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -45,9 +44,8 @@ CefRefPtr<CefMenuButton> CefMenuButton::CreateMenuButton(
|
||||
// Unverified params: text
|
||||
|
||||
// Execute
|
||||
cef_menu_button_t* _retval =
|
||||
cef_menu_button_create(CefMenuButtonDelegateCppToC::Wrap(delegate),
|
||||
text.GetStruct(), with_frame);
|
||||
cef_menu_button_t* _retval = cef_menu_button_create(
|
||||
CefMenuButtonDelegateCppToC::Wrap(delegate), text.GetStruct());
|
||||
|
||||
// Return type: refptr_same
|
||||
return CefMenuButtonCToCpp::Wrap(_retval);
|
||||
|
Reference in New Issue
Block a user