Title: [169391] trunk/Source/WebKit2
Revision
169391
Author
barraclo...@apple.com
Date
2014-05-27 11:21:34 -0700 (Tue, 27 May 2014)

Log Message

importance_assertion -> denap_assertion
https://bugs.webkit.org/show_bug.cgi?id=133294

iOS build fix

* Platform/IPC/mac/ConnectionMac.mm:
(IPC::Connection::open):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169390 => 169391)


--- trunk/Source/WebKit2/ChangeLog	2014-05-27 17:59:25 UTC (rev 169390)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-27 18:21:34 UTC (rev 169391)
@@ -1,5 +1,15 @@
 2014-05-27  Gavin Barraclough  <baraclo...@apple.com>
 
+        importance_assertion -> denap_assertion
+        https://bugs.webkit.org/show_bug.cgi?id=133294
+
+        iOS build fix
+
+        * Platform/IPC/mac/ConnectionMac.mm:
+        (IPC::Connection::open):
+
+2014-05-27  Gavin Barraclough  <baraclo...@apple.com>
+
         Add UI process watchdog on iOS to ensure WebProcess connections close
         https://bugs.webkit.org/show_bug.cgi?id=133200
         <rdar://problem/16997983>

Modified: trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm (169390 => 169391)


--- trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2014-05-27 17:59:25 UTC (rev 169390)
+++ trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2014-05-27 18:21:34 UTC (rev 169391)
@@ -190,9 +190,9 @@
         // Create the receive port.
         mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &m_receivePort);
 
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
+#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
         mach_port_set_attributes(mach_task_self(), m_receivePort, MACH_PORT_DENAP_RECEIVER, (mach_port_info_t)0, 0);
-#elif __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
+#elif PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
         mach_port_set_attributes(mach_task_self(), m_receivePort, MACH_PORT_IMPORTANCE_RECEIVER, (mach_port_info_t)0, 0);
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to