Update to Chromium version 129.0.6668.0

- Mac: Minimum system version is now 11.0.
- Win: Windows SDK version is now 10.0.22621.2428.
This commit is contained in:
Nik Pavlov
2024-08-26 12:44:25 +00:00
committed by Marshall Greenblatt
parent 2cd405baac
commit af1f40a2d3
94 changed files with 875 additions and 763 deletions

View File

@@ -52,8 +52,8 @@ void WriteTempFileAndView(const std::string& data) {
// program to open.
tmp_file = tmp_file.AddExtension(L"txt");
int write_ct = base::WriteFile(tmp_file, data.c_str(), data.size());
DCHECK_EQ(static_cast<int>(data.size()), write_ct);
const bool write_success = base::WriteFile(tmp_file, data);
DCHECK(write_success);
ui::win::OpenFileViaShell(tmp_file);
}