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=ade8463314c8fc448c4e5ec3d3957406136b7093$
// $hash=df8ed09a4f57cf6673ec186b5caebe35406b9a0c$
//
#include "libcef_dll/cpptoc/views/label_button_cpptoc.h"
@@ -30,8 +30,7 @@
CEF_EXPORT cef_label_button_t* cef_label_button_create(
cef_button_delegate_t* delegate,
const cef_string_t* text,
int with_frame) {
const cef_string_t* text) {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -44,8 +43,7 @@ CEF_EXPORT cef_label_button_t* cef_label_button_create(
// Execute
CefRefPtr<CefLabelButton> _retval = CefLabelButton::CreateLabelButton(
CefButtonDelegateCToCpp::Wrap(delegate), CefString(text),
with_frame ? true : false);
CefButtonDelegateCToCpp::Wrap(delegate), CefString(text));
// Return type: refptr_same
return CefLabelButtonCppToC::Wrap(_retval);

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=e89e1ff0724489e14eef305e8e32093c8dc00c8d$
// $hash=9253db077e6fc32d5b7a2b4cf2aebe061f97f43d$
//
#include "libcef_dll/cpptoc/views/menu_button_cpptoc.h"
@@ -31,8 +31,7 @@
CEF_EXPORT cef_menu_button_t* cef_menu_button_create(
cef_menu_button_delegate_t* delegate,
const cef_string_t* text,
int with_frame) {
const cef_string_t* text) {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -45,8 +44,7 @@ CEF_EXPORT cef_menu_button_t* cef_menu_button_create(
// Execute
CefRefPtr<CefMenuButton> _retval = CefMenuButton::CreateMenuButton(
CefMenuButtonDelegateCToCpp::Wrap(delegate), CefString(text),
with_frame ? true : false);
CefMenuButtonDelegateCToCpp::Wrap(delegate), CefString(text));
// Return type: refptr_same
return CefMenuButtonCppToC::Wrap(_retval);

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

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=03444846894791bdea24dbd8b059570cda5b801f$
// $hash=13555da36aa665884dfafb4c2d66d33f200e34c7$
//
#include "include/views/cef_browser_view.h"
@@ -78,8 +78,7 @@ void CefDisplay::GetAllDisplays(std::vector<CefRefPtr<CefDisplay>>& displays) {
NO_SANITIZE("cfi-icall")
CefRefPtr<CefLabelButton> CefLabelButton::CreateLabelButton(
CefRefPtr<CefButtonDelegate> delegate,
const CefString& text,
bool with_frame) {
const CefString& text) {
NOTIMPLEMENTED();
return NULL;
}
@@ -87,8 +86,7 @@ CefRefPtr<CefLabelButton> CefLabelButton::CreateLabelButton(
NO_SANITIZE("cfi-icall")
CefRefPtr<CefMenuButton> CefMenuButton::CreateMenuButton(
CefRefPtr<CefMenuButtonDelegate> delegate,
const CefString& text,
bool with_frame) {
const CefString& text) {
NOTIMPLEMENTED();
return NULL;
}

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=436002ae114825124a9a52a24928a974fcf5408a$
// $hash=231f2dd6f300c93a38ef8c18e19141691b3337ac$
//
#include <dlfcn.h>
@@ -317,12 +317,10 @@ typedef size_t (*cef_display_get_count_ptr)();
typedef void (*cef_display_get_alls_ptr)(size_t*, struct _cef_display_t**);
typedef struct _cef_label_button_t* (*cef_label_button_create_ptr)(
struct _cef_button_delegate_t*,
const cef_string_t*,
int);
const cef_string_t*);
typedef struct _cef_menu_button_t* (*cef_menu_button_create_ptr)(
struct _cef_menu_button_delegate_t*,
const cef_string_t*,
int);
const cef_string_t*);
typedef struct _cef_panel_t* (*cef_panel_create_ptr)(
struct _cef_panel_delegate_t*);
typedef struct _cef_scroll_view_t* (*cef_scroll_view_create_ptr)(
@@ -1091,8 +1089,8 @@ int cef_create_url(const struct _cef_urlparts_t* parts, cef_string_t* url) {
}
NO_SANITIZE("cfi-icall")
cef_string_userfree_t cef_format_url_for_security_display(
const cef_string_t* origin_url) {
cef_string_userfree_t
cef_format_url_for_security_display(const cef_string_t* origin_url) {
return g_libcef_pointers.cef_format_url_for_security_display(origin_url);
}
@@ -1571,46 +1569,54 @@ struct _cef_translator_test_t* cef_translator_test_create() {
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_ref_ptr_library_t*
cef_translator_test_ref_ptr_library_create(int value) {
struct
_cef_translator_test_ref_ptr_library_t* cef_translator_test_ref_ptr_library_create(
int value) {
return g_libcef_pointers.cef_translator_test_ref_ptr_library_create(value);
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_ref_ptr_library_child_t*
cef_translator_test_ref_ptr_library_child_create(int value, int other_value) {
struct
_cef_translator_test_ref_ptr_library_child_t* cef_translator_test_ref_ptr_library_child_create(
int value,
int other_value) {
return g_libcef_pointers.cef_translator_test_ref_ptr_library_child_create(
value, other_value);
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_ref_ptr_library_child_child_t*
cef_translator_test_ref_ptr_library_child_child_create(int value,
int other_value,
int other_other_value) {
struct
_cef_translator_test_ref_ptr_library_child_child_t* cef_translator_test_ref_ptr_library_child_child_create(
int value,
int other_value,
int other_other_value) {
return g_libcef_pointers
.cef_translator_test_ref_ptr_library_child_child_create(
value, other_value, other_other_value);
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_scoped_library_t*
cef_translator_test_scoped_library_create(int value) {
struct
_cef_translator_test_scoped_library_t* cef_translator_test_scoped_library_create(
int value) {
return g_libcef_pointers.cef_translator_test_scoped_library_create(value);
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_scoped_library_child_t*
cef_translator_test_scoped_library_child_create(int value, int other_value) {
struct
_cef_translator_test_scoped_library_child_t* cef_translator_test_scoped_library_child_create(
int value,
int other_value) {
return g_libcef_pointers.cef_translator_test_scoped_library_child_create(
value, other_value);
}
NO_SANITIZE("cfi-icall")
struct _cef_translator_test_scoped_library_child_child_t*
cef_translator_test_scoped_library_child_child_create(int value,
int other_value,
int other_other_value) {
struct
_cef_translator_test_scoped_library_child_child_t* cef_translator_test_scoped_library_child_child_create(
int value,
int other_value,
int other_other_value) {
return g_libcef_pointers
.cef_translator_test_scoped_library_child_child_create(value, other_value,
other_other_value);
@@ -1665,17 +1671,15 @@ void cef_display_get_alls(size_t* displaysCount,
NO_SANITIZE("cfi-icall")
struct _cef_label_button_t* cef_label_button_create(
struct _cef_button_delegate_t* delegate,
const cef_string_t* text,
int with_frame) {
return g_libcef_pointers.cef_label_button_create(delegate, text, with_frame);
const cef_string_t* text) {
return g_libcef_pointers.cef_label_button_create(delegate, text);
}
NO_SANITIZE("cfi-icall")
struct _cef_menu_button_t* cef_menu_button_create(
struct _cef_menu_button_delegate_t* delegate,
const cef_string_t* text,
int with_frame) {
return g_libcef_pointers.cef_menu_button_create(delegate, text, with_frame);
const cef_string_t* text) {
return g_libcef_pointers.cef_menu_button_create(delegate, text);
}
NO_SANITIZE("cfi-icall")