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:
Petra Öhlin
2019-07-16 13:59:21 -04:00
committed by Marshall Greenblatt
parent 5892ffc382
commit cc0db5f166
124 changed files with 1312 additions and 1416 deletions

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=06d1a2ceda1286960241c582b7ac4abba2319835$
// $hash=41970661c30de858da045839a76401593ae4f11a$
//
#include "libcef_dll/ctocpp/views/label_button_ctocpp.h"
@ -31,8 +31,7 @@
NO_SANITIZE("cfi-icall")
CefRefPtr<CefLabelButton> CefLabelButton::CreateLabelButton(
CefRefPtr<CefButtonDelegate> delegate,
const CefString& text,
bool with_frame) {
const CefString& text) {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -45,7 +44,7 @@ CefRefPtr<CefLabelButton> CefLabelButton::CreateLabelButton(
// Execute
cef_label_button_t* _retval = cef_label_button_create(
CefButtonDelegateCppToC::Wrap(delegate), text.GetStruct(), with_frame);
CefButtonDelegateCppToC::Wrap(delegate), text.GetStruct());
// Return type: refptr_same
return CefLabelButtonCToCpp::Wrap(_retval);

View File

@ -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);