Update to Chromium version 84.0.4147.0 (#768962)

This commit is contained in:
Alexander Guettler
2020-06-09 13:48:00 -04:00
committed by Marshall Greenblatt
parent 640cd0f411
commit 790d248111
112 changed files with 756 additions and 713 deletions

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=0f677bbeb351b9d71e00c622971d4593c99b99d5$
// $hash=4a14bb6e1e703a28f4998baf4d575716ff6e1fea$
//
#include "libcef_dll/ctocpp/views/textfield_ctocpp.h"
@@ -427,7 +427,8 @@ void CefTextfieldCToCpp::ApplyTextStyle(cef_text_style_t style,
}
NO_SANITIZE("cfi-icall")
bool CefTextfieldCToCpp::IsCommandEnabled(int command_id) {
bool CefTextfieldCToCpp::IsCommandEnabled(
cef_text_field_commands_t command_id) {
shutdown_checker::AssertNotShutdown();
cef_textfield_t* _struct = GetStruct();
@@ -444,7 +445,7 @@ bool CefTextfieldCToCpp::IsCommandEnabled(int command_id) {
}
NO_SANITIZE("cfi-icall")
void CefTextfieldCToCpp::ExecuteCommand(int command_id) {
void CefTextfieldCToCpp::ExecuteCommand(cef_text_field_commands_t command_id) {
shutdown_checker::AssertNotShutdown();
cef_textfield_t* _struct = GetStruct();

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=8c3c6f34acb740232874335312c7a28699f32806$
// $hash=f36dce02225c4f65de348862d8a8e4e99471129d$
//
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_TEXTFIELD_CTOCPP_H_
@@ -60,8 +60,8 @@ class CefTextfieldCToCpp : public CefCToCppRefCounted<CefTextfieldCToCpp,
void ApplyTextStyle(cef_text_style_t style,
bool add,
const CefRange& range) OVERRIDE;
bool IsCommandEnabled(int command_id) OVERRIDE;
void ExecuteCommand(int command_id) OVERRIDE;
bool IsCommandEnabled(cef_text_field_commands_t command_id) OVERRIDE;
void ExecuteCommand(cef_text_field_commands_t command_id) OVERRIDE;
void ClearEditHistory() OVERRIDE;
void SetPlaceholderText(const CefString& text) OVERRIDE;
CefString GetPlaceholderText() OVERRIDE;