* Platform/mac/LayerHostingContext.mm:
(WebKit::LayerHostingContext::setFencePort):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@183846
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
Fix the build.
+ * Platform/mac/LayerHostingContext.mm:
+ (WebKit::LayerHostingContext::setFencePort):
+
+2015-05-05 Tim Horton <timothy_horton@apple.com>
+
+ Fix the build.
+
* UIProcess/mac/WKViewLayoutStrategy.mm:
(-[WKViewDynamicSizeWithMinimumViewSizeLayoutStrategy updateLayout]):
return [m_context colorSpace];
}
+#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
void LayerHostingContext::setFencePort(mach_port_t fencePort)
{
-#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
[m_context setFencePort:fencePort];
+}
#else
+NO_RETURN_DUE_TO_ASSERT void LayerHostingContext::setFencePort(mach_port_t fencePort)
+{
ASSERT_NOT_REACHED();
-#endif
}
+#endif
} // namespace WebKit