mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 75.0.3749.0 (#645082)
This commit is contained in:
committed by
Marshall Greenblatt
parent
1beec23065
commit
879911b721
@ -748,6 +748,8 @@ CefValueType CefDictionaryValueImpl::GetType(const CefString& key) {
|
||||
return VTYPE_DICTIONARY;
|
||||
case base::Value::Type::LIST:
|
||||
return VTYPE_LIST;
|
||||
case base::Value::Type::DEAD:
|
||||
return VTYPE_INVALID;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1156,6 +1158,8 @@ CefValueType CefListValueImpl::GetType(size_t index) {
|
||||
return VTYPE_DICTIONARY;
|
||||
case base::Value::Type::LIST:
|
||||
return VTYPE_LIST;
|
||||
case base::Value::Type::DEAD:
|
||||
return VTYPE_INVALID;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user