mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 105.0.5195.0 (#1027018)
This commit is contained in:
@@ -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() {
|
||||
|
Reference in New Issue
Block a user