Initialize eina for chrome. 74/317174/4
authorRohit Kumar <rohit.16@partner.samsung.com>
Thu, 5 Sep 2024 06:24:29 +0000 (11:54 +0530)
committerBot Blink <blinkbot@samsung.com>
Tue, 10 Sep 2024 11:28:52 +0000 (11:28 +0000)
This change initializes the Eina library for the Chrome
browser to address a crash issue encountered during the
installation of the YouTube app. By ensuring proper
initialization of Eina, the crash issue is resolved,
allowing the installation process to proceed
without interruptions.

Change-Id: I4ce5f45e383b41b7780ddda5ff065e7f4c7ae461
Signed-off-by: Rohit Kumar <rohit.16@partner.samsung.com>
tizen_src/chromium_impl/ui/ozone/platform/efl/efl_window.cc

index 8060c35bee276f6cecb47485b62525c4b4d932b8..ea89f84fac360960e17dece544b6663f62c37e50 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <Eldbus.h>
 #include <Elementary.h>
+#include <Eina.h>
 #include "base/base_switches.h"
 #include "base/command_line.h"
 #include "base/functional/bind.h"
@@ -377,6 +378,7 @@ void EflWindow::Initialize(const PlatformWindowInitProperties& properties) {
   }
 
   if (!g_evas_init) {
+    eina_init();
     ecore_evas_init();
     evas_init();
     eldbus_init();