https://bugs.webkit.org/show_bug.cgi?id=143342
* Platform/mac/LayerHostingContext.h:
* Platform/mac/LayerHostingContext.mm:
Actually, not available on Mavericks. Fix the build.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@182305
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-04-02 Timothy Horton <timothy_horton@apple.com>
+
+ De-PLATFORM(IOS)-ify LayerHostingContext::setFencePort
+ https://bugs.webkit.org/show_bug.cgi?id=143342
+
+ * Platform/mac/LayerHostingContext.h:
+ * Platform/mac/LayerHostingContext.mm:
+ Actually, not available on Mavericks. Fix the build.
+
2015-04-02 Brady Eidson <beidson@apple.com>
Unreviewed: Re-applied change after rollout.
void setColorSpace(CGColorSpaceRef);
CGColorSpaceRef colorSpace() const;
+#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
void setFencePort(mach_port_t);
+#endif
private:
LayerHostingMode m_layerHostingMode;
return [m_context colorSpace];
}
+#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
void LayerHostingContext::setFencePort(mach_port_t fencePort)
{
[m_context setFencePort:fencePort];
}
+#endif
} // namespace WebKit