12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Engine/Source/Runtime/WebBrowser/Private/CEF/CEFInterfaceLibCefIncludes.h
- #pragma once
- #if WITH_CEF3
- #ifndef OVERRIDE
- # define OVERRIDE override
- #endif //OVERRIDE
- #if PLATFORM_WINDOWS
- # include "Windows/WindowsHWrapper.h"
- # include "Windows/AllowWindowsPlatformTypes.h"
- # include "Windows/AllowWindowsPlatformAtomics.h"
- #endif
- THIRD_PARTY_INCLUDES_START
- # if PLATFORM_APPLE
- PRAGMA_DISABLE_DEPRECATION_WARNINGS
- # endif //PLATFORM_APPLE
- # pragma push_macro("OVERRIDE")
- # undef OVERRIDE // cef headers provide their own OVERRIDE macro
- # include "include/cef_app.h"
- # include "include/cef_client.h"
- # include "include/cef_request.h"
- # include "include/cef_task.h"
- # include "include/cef_render_handler.h"
- # include "include/cef_resource_handler.h"
- # include "include/cef_resource_request_handler.h"
- # include "include/cef_request_context_handler.h"
- # include "include/cef_jsdialog_handler.h"
- # include "include/cef_scheme.h"
- # include "include/cef_origin_whitelist.h"
- # include "include/internal/cef_ptr.h"
- # pragma pop_macro("OVERRIDE")
- # if PLATFORM_APPLE
- PRAGMA_ENABLE_DEPRECATION_WARNINGS
- # endif //PLATFORM_APPLE
- THIRD_PARTY_INCLUDES_END
- #if PLATFORM_WINDOWS
- # include "Windows/HideWindowsPlatformAtomics.h"
- # include "Windows/HideWindowsPlatformTypes.h"
- #endif
- #endif //WITH_CEF3
|