Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[webview_flutter] Disable unnecessary web-engine initialization
ewk_init() and ewk_shutdown() are designed to be called only once in a process. (If ewk_init() is called after ewk_shutdown() is called, SIGTRAP is called internally.) ewk_init() initializes the efl module and web engine's arguments data. The efl module is initialized by default in OS, and Arguments data is also initialized through SetArguments() API, so calling ewk_init() is not necessary. Therefore, temporarily comment out ewk_init() and ewk_shutdown(). It can be reverted depending on updates to chromium-efl. ewk_init();
- Loading branch information