Title: [199711] trunk/Source/WebKit2
Revision
199711
Author
commit-qu...@webkit.org
Date
2016-04-19 00:21:46 -0700 (Tue, 19 Apr 2016)

Log Message

Unreviewed, rolling out r199658.
https://bugs.webkit.org/show_bug.cgi?id=156736

It broke all EFL layout tests (Requested by KaL on #webkit).

Reverted changeset:

"[UNIX] Initialize WebKit before the platform initializations"
https://bugs.webkit.org/show_bug.cgi?id=156622
http://trac.webkit.org/changeset/199658

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (199710 => 199711)


--- trunk/Source/WebKit2/ChangeLog	2016-04-19 06:54:25 UTC (rev 199710)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-19 07:21:46 UTC (rev 199711)
@@ -1,3 +1,16 @@
+2016-04-19  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r199658.
+        https://bugs.webkit.org/show_bug.cgi?id=156736
+
+        It broke all EFL layout tests (Requested by KaL on #webkit).
+
+        Reverted changeset:
+
+        "[UNIX] Initialize WebKit before the platform initializations"
+        https://bugs.webkit.org/show_bug.cgi?id=156622
+        http://trac.webkit.org/changeset/199658
+
 2016-04-18  Alex Christensen  <achristen...@webkit.org>
 
         Build fix after r199700

Modified: trunk/Source/WebKit2/Shared/unix/ChildProcessMain.h (199710 => 199711)


--- trunk/Source/WebKit2/Shared/unix/ChildProcessMain.h	2016-04-19 06:54:25 UTC (rev 199710)
+++ trunk/Source/WebKit2/Shared/unix/ChildProcessMain.h	2016-04-19 07:21:46 UTC (rev 199711)
@@ -49,11 +49,11 @@
 {
     ChildProcessMainType childMain;
 
-    InitializeWebKit2();
-
     if (!childMain.platformInitialize())
         return EXIT_FAILURE;
 
+    InitializeWebKit2();
+
     if (!childMain.parseCommandLine(argc, argv))
         return EXIT_FAILURE;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to