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=b80bdf378a812e1ab80aaf67c1042c69223eaa6b$
|
||||
// $hash=d53ce4c040c4839540a656901efd75e55720de98$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/views/display_ctocpp.h"
|
||||
@@ -164,7 +164,7 @@ CefRect CefDisplay::ConvertScreenRectFromPixels(const CefRect& rect) {
|
||||
|
||||
// VIRTUAL METHODS - Body may be edited by hand.
|
||||
|
||||
NO_SANITIZE("cfi-icall") int64 CefDisplayCToCpp::GetID() {
|
||||
NO_SANITIZE("cfi-icall") int64_t CefDisplayCToCpp::GetID() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_display_t* _struct = GetStruct();
|
||||
@@ -175,7 +175,7 @@ NO_SANITIZE("cfi-icall") int64 CefDisplayCToCpp::GetID() {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Execute
|
||||
int64 _retval = _struct->get_id(_struct);
|
||||
int64_t _retval = _struct->get_id(_struct);
|
||||
|
||||
// Return type: simple
|
||||
return _retval;
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a05d5f989630c0c031cbe9cc04150a6e1e54c4d4$
|
||||
// $hash=344eaf627105f0a3b80b44e1d576baa7f2cdc47d$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_DISPLAY_CTOCPP_H_
|
||||
@@ -33,7 +33,7 @@ class CefDisplayCToCpp
|
||||
virtual ~CefDisplayCToCpp();
|
||||
|
||||
// CefDisplay methods.
|
||||
int64 GetID() override;
|
||||
int64_t GetID() override;
|
||||
float GetDeviceScaleFactor() override;
|
||||
void ConvertPointToPixels(CefPoint& point) override;
|
||||
void ConvertPointFromPixels(CefPoint& point) override;
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=30ee552d6bcf02136ce44a3bb5d0d0be7eb112c0$
|
||||
// $hash=29399b84620b09e086f65f712b50573d7fcd1be8$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/views/window_ctocpp.h"
|
||||
@@ -589,7 +589,7 @@ NO_SANITIZE("cfi-icall") CefWindowHandle CefWindowCToCpp::GetWindowHandle() {
|
||||
}
|
||||
|
||||
NO_SANITIZE("cfi-icall")
|
||||
void CefWindowCToCpp::SendKeyPress(int key_code, uint32 event_flags) {
|
||||
void CefWindowCToCpp::SendKeyPress(int key_code, uint32_t event_flags) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_window_t* _struct = GetStruct();
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a16d73107ffbbcdb06153c0bfcc5e4ac43bbadb0$
|
||||
// $hash=5ea05d2b5c24bfc214a529d62fba2e69ea626b78$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_VIEWS_WINDOW_CTOCPP_H_
|
||||
@@ -70,7 +70,7 @@ class CefWindowCToCpp
|
||||
void SetDraggableRegions(
|
||||
const std::vector<CefDraggableRegion>& regions) override;
|
||||
CefWindowHandle GetWindowHandle() override;
|
||||
void SendKeyPress(int key_code, uint32 event_flags) override;
|
||||
void SendKeyPress(int key_code, uint32_t event_flags) override;
|
||||
void SendMouseMove(int screen_x, int screen_y) override;
|
||||
void SendMouseEvents(cef_mouse_button_type_t button,
|
||||
bool mouse_down,
|
||||
|
Reference in New Issue
Block a user