Avoid usage of platform #ifdefs in cef_types.h (see #3836)

This file is passed to clang and will otherwise generate different
API hashes on different platforms.
This commit is contained in:
Marshall Greenblatt
2025-01-09 11:32:37 -05:00
parent de5324ef05
commit f6b02f90aa

View File

@@ -488,12 +488,10 @@ typedef struct _cef_settings_t {
/// ///
int chrome_app_icon_id; int chrome_app_icon_id;
#if defined(OS_POSIX) && !defined(OS_ANDROID)
/// ///
/// Specify whether signal handlers must be disabled on POSIX systems. /// Specify whether signal handlers must be disabled on POSIX systems.
/// ///
int disable_signal_handlers; int disable_signal_handlers;
#endif
} cef_settings_t; } cef_settings_t;
/// ///