Update to Chromium version 105.0.5195.0 (#1027018)

This commit is contained in:
Marshall Greenblatt
2022-07-25 13:49:32 -04:00
parent e9f29ab3d6
commit 9af494d36c
72 changed files with 811 additions and 686 deletions

View File

@@ -190,7 +190,7 @@ bool CefValueImpl::IsEqual(CefRefPtr<CefValue> that) {
if (!value_) // Invalid types are equal.
return true;
return value_->Equals(impl->value_.get());
return *value_ == *(impl->value_.get());
}
CefRefPtr<CefValue> CefValueImpl::Copy() {
@@ -486,7 +486,7 @@ bool CefBinaryValueImpl::IsSameValue(const base::Value* that) {
bool CefBinaryValueImpl::IsEqualValue(const base::Value* that) {
CEF_VALUE_VERIFY_RETURN(false, false);
return const_value().Equals(that);
return const_value() == *that;
}
base::Value* CefBinaryValueImpl::GetValueUnsafe() {
@@ -629,7 +629,7 @@ bool CefDictionaryValueImpl::IsSameValue(const base::DictionaryValue* that) {
bool CefDictionaryValueImpl::IsEqualValue(const base::DictionaryValue* that) {
CEF_VALUE_VERIFY_RETURN(false, false);
return const_value().Equals(that);
return const_value() == *that;
}
base::DictionaryValue* CefDictionaryValueImpl::GetValueUnsafe() {
@@ -1054,7 +1054,7 @@ bool CefListValueImpl::IsSameValue(const base::ListValue* that) {
bool CefListValueImpl::IsEqualValue(const base::ListValue* that) {
CEF_VALUE_VERIFY_RETURN(false, false);
return const_value().Equals(that);
return const_value() == *that;
}
base::ListValue* CefListValueImpl::GetValueUnsafe() {