Title: [128449] trunk/Source/WebKit2
Revision
128449
Author
[email protected]
Date
2012-09-13 05:37:51 -0700 (Thu, 13 Sep 2012)

Log Message

[Qt] Fix UIProcess build with Qt on Windows
https://bugs.webkit.org/show_bug.cgi?id=96635

Patch by Simon Hausmann <[email protected]> on 2012-09-13
Reviewed by Csaba Osztrogonác.

Enabling setShouldCloseConnectionOnProcessTermination on the connection
is something that is only implemented in ConnectionUnix, not
ConnectionWin.cpp, where appears to be built-in functionality.

* UIProcess/WebConnectionToWebProcess.cpp:
(WebKit::WebConnectionToWebProcess::WebConnectionToWebProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (128448 => 128449)


--- trunk/Source/WebKit2/ChangeLog	2012-09-13 12:12:19 UTC (rev 128448)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-13 12:37:51 UTC (rev 128449)
@@ -1,3 +1,17 @@
+2012-09-13  Simon Hausmann  <[email protected]>
+
+        [Qt] Fix UIProcess build with Qt on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=96635
+
+        Reviewed by Csaba Osztrogonác.
+
+        Enabling setShouldCloseConnectionOnProcessTermination on the connection
+        is something that is only implemented in ConnectionUnix, not
+        ConnectionWin.cpp, where appears to be built-in functionality.
+
+        * UIProcess/WebConnectionToWebProcess.cpp:
+        (WebKit::WebConnectionToWebProcess::WebConnectionToWebProcess):
+
 2012-09-13  Oswald Buddenhagen  <[email protected]>
 
         [Qt] Fix build against namespaced Qt

Modified: trunk/Source/WebKit2/UIProcess/WebConnectionToWebProcess.cpp (128448 => 128449)


--- trunk/Source/WebKit2/UIProcess/WebConnectionToWebProcess.cpp	2012-09-13 12:12:19 UTC (rev 128448)
+++ trunk/Source/WebKit2/UIProcess/WebConnectionToWebProcess.cpp	2012-09-13 12:37:51 UTC (rev 128449)
@@ -45,7 +45,7 @@
 {
 #if OS(DARWIN)
     m_connection->setShouldCloseConnectionOnMachExceptions();
-#elif PLATFORM(QT)
+#elif PLATFORM(QT) && !OS(WINDOWS)
     m_connection->setShouldCloseConnectionOnProcessTermination(process->processIdentifier());
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to