Update to Chromium version 92.0.4515.0 (#885287)

This commit is contained in:
Marshall Greenblatt
2021-06-03 21:34:56 -04:00
parent f2f52c1e2c
commit 00dca9601e
190 changed files with 1234 additions and 1309 deletions

View File

@ -42,7 +42,7 @@ CefRefPtr<CefValue> CefParseJSON(const void* json,
cef_json_parser_options_t options) {
if (!json || json_size == 0)
return nullptr;
base::Optional<base::Value> parse_result = base::JSONReader::Read(
absl::optional<base::Value> parse_result = base::JSONReader::Read(
base::StringPiece(static_cast<const char*>(json), json_size),
GetJSONReaderOptions(options));
if (parse_result) {