CefBase.cpp 744 B

123456789101112131415161718192021222324252627
  1. // Copyright aXiuShen. All Rights Reserved.
  2. #include "CefBase.h"
  3. #include "cef3lib.h"
  4. #define LOCTEXT_NAMESPACE "FCefBaseModule"
  5. void FCefBaseModule::StartupModule()
  6. {
  7. // This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
  8. #ifdef WEBVIEW_CUSTOMIZED_CORE
  9. //ICEF3LIB::get()->LoadCEF3Modules();
  10. #endif
  11. }
  12. void FCefBaseModule::ShutdownModule()
  13. {
  14. // This function may be called during shutdown to clean up your module. For modules that support dynamic reloading,
  15. // we call this function before unloading the module.
  16. #ifdef WEBVIEW_CUSTOMIZED_CORE
  17. //ICEF3LIB::get()->UnloadCEF3Modules();
  18. #endif
  19. }
  20. #undef LOCTEXT_NAMESPACE
  21. IMPLEMENT_MODULE(FCefBaseModule, CefBase)