Title: [172371] trunk/Source/WebKit2
Revision
172371
Author
[email protected]
Date
2014-08-08 19:37:31 -0700 (Fri, 08 Aug 2014)

Log Message

[EFL] Do not initialize g_type in WebProcessMain::platformInitialize()
https://bugs.webkit.org/show_bug.cgi?id=135700

Reviewed by Gyuyoung Kim.

Inspired by r171788.
Glib since 2.36 itself initializes g_type_init.

* WebProcess/efl/WebProcessMainEfl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (172370 => 172371)


--- trunk/Source/WebKit2/ChangeLog	2014-08-09 01:14:52 UTC (rev 172370)
+++ trunk/Source/WebKit2/ChangeLog	2014-08-09 02:37:31 UTC (rev 172371)
@@ -1,3 +1,15 @@
+2014-08-08  Grzegorz Czajkowski  <[email protected]>
+
+        [EFL] Do not initialize g_type in WebProcessMain::platformInitialize()
+        https://bugs.webkit.org/show_bug.cgi?id=135700
+
+        Reviewed by Gyuyoung Kim.
+
+        Inspired by r171788.
+        Glib since 2.36 itself initializes g_type_init.
+
+        * WebProcess/efl/WebProcessMainEfl.cpp:
+
 2014-08-08  Tim Horton  <[email protected]>
 
         Build fix for 32-bit.

Modified: trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp (172370 => 172371)


--- trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp	2014-08-09 01:14:52 UTC (rev 172370)
+++ trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp	2014-08-09 02:37:31 UTC (rev 172371)
@@ -95,10 +95,6 @@
             return false;
         }
 
-#if !GLIB_CHECK_VERSION(2, 35, 0)
-        g_type_init();
-#endif
-
         if (!ecore_main_loop_glib_integrate())
             return false;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to