mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 109.0.5414.0 (#1070088)
- mac: Xcode 14.0 with macOS SDK 13.0 is now required. - Remove CefRequestHandler::OnQuotaRequest because persistent quota is no longer supported (see https://crbug.com/1208141)
This commit is contained in:
@ -15,7 +15,7 @@ CefRefPtr<CefStreamReader> CefStreamReader::CreateForFile(
|
||||
DCHECK(!fileName.empty());
|
||||
|
||||
// TODO(cef): Do not allow file IO on all threads (issue #1187).
|
||||
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
||||
base::ScopedAllowBlockingForTesting allow_blocking;
|
||||
|
||||
CefRefPtr<CefStreamReader> reader;
|
||||
FILE* file = base::OpenFile(base::FilePath(fileName), "rb");
|
||||
@ -48,7 +48,7 @@ CefRefPtr<CefStreamWriter> CefStreamWriter::CreateForFile(
|
||||
DCHECK(!fileName.empty());
|
||||
|
||||
// TODO(cef): Do not allow file IO on all threads (issue #1187).
|
||||
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
||||
base::ScopedAllowBlockingForTesting allow_blocking;
|
||||
|
||||
CefRefPtr<CefStreamWriter> writer;
|
||||
FILE* file = base::OpenFile(base::FilePath(fileName), "wb");
|
||||
|
Reference in New Issue
Block a user