Update generated files for int/char typedef removal (see #3507)

This commit is contained in:
Marshall Greenblatt
2023-06-01 17:07:20 +03:00
parent 5042d71408
commit b854992ae6
102 changed files with 377 additions and 375 deletions

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=50740eddae0ae234cf24d2b73eadcfdb16fcf0f0$
// $hash=0b70adb9a01fcb166ffa6b310825a4d9679a8d23$
//
#ifndef CEF_LIBCEF_DLL_CTOCPP_URLREQUEST_CLIENT_CTOCPP_H_
@@ -37,11 +37,11 @@ class CefURLRequestClientCToCpp
// CefURLRequestClient methods.
void OnRequestComplete(CefRefPtr<CefURLRequest> request) override;
void OnUploadProgress(CefRefPtr<CefURLRequest> request,
int64 current,
int64 total) override;
int64_t current,
int64_t total) override;
void OnDownloadProgress(CefRefPtr<CefURLRequest> request,
int64 current,
int64 total) override;
int64_t current,
int64_t total) override;
void OnDownloadData(CefRefPtr<CefURLRequest> request,
const void* data,
size_t data_length) override;