mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update generated files for int/char typedef removal (see #3507)
This commit is contained in:
@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=9e4ec003479af870824a7b7609bc45e4f40fc52a$
|
||||
// $hash=c3caec6488343dacaf00231a9304bcd4b3c95d9e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/write_handler_cpptoc.h"
|
||||
@ -45,7 +45,7 @@ size_t CEF_CALLBACK write_handler_write(struct _cef_write_handler_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK write_handler_seek(struct _cef_write_handler_t* self,
|
||||
int64 offset,
|
||||
int64_t offset,
|
||||
int whence) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
@ -63,7 +63,7 @@ int CEF_CALLBACK write_handler_seek(struct _cef_write_handler_t* self,
|
||||
return _retval;
|
||||
}
|
||||
|
||||
int64 CEF_CALLBACK write_handler_tell(struct _cef_write_handler_t* self) {
|
||||
int64_t CEF_CALLBACK write_handler_tell(struct _cef_write_handler_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -74,7 +74,7 @@ int64 CEF_CALLBACK write_handler_tell(struct _cef_write_handler_t* self) {
|
||||
}
|
||||
|
||||
// Execute
|
||||
int64 _retval = CefWriteHandlerCppToC::Get(self)->Tell();
|
||||
int64_t _retval = CefWriteHandlerCppToC::Get(self)->Tell();
|
||||
|
||||
// Return type: simple
|
||||
return _retval;
|
||||
|
Reference in New Issue
Block a user