mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 125.0.6422.0 (#1287751)
This commit is contained in:
@ -48,7 +48,7 @@ CefRefPtr<CefValue> CefParseJSON(const void* json,
|
||||
return nullptr;
|
||||
}
|
||||
std::optional<base::Value> parse_result = base::JSONReader::Read(
|
||||
base::StringPiece(static_cast<const char*>(json), json_size),
|
||||
std::string_view(static_cast<const char*>(json), json_size),
|
||||
GetJSONReaderOptions(options));
|
||||
if (parse_result) {
|
||||
return new CefValueImpl(std::move(parse_result.value()));
|
||||
|
Reference in New Issue
Block a user