Title: [182291] trunk/Source/WebKit2
- Revision
- 182291
- Author
- [email protected]
- Date
- 2015-04-02 15:23:16 -0700 (Thu, 02 Apr 2015)
Log Message
De-PLATFORM(IOS)-ify LayerHostingContext::setFencePort
https://bugs.webkit.org/show_bug.cgi?id=143342
Reviewed by Myles C. Maxfield.
* Platform/mac/LayerHostingContext.h:
* Platform/mac/LayerHostingContext.mm:
(WebKit::LayerHostingContext::setFencePort):
There's nothing iOS specific about this.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (182290 => 182291)
--- trunk/Source/WebKit2/ChangeLog 2015-04-02 22:22:05 UTC (rev 182290)
+++ trunk/Source/WebKit2/ChangeLog 2015-04-02 22:23:16 UTC (rev 182291)
@@ -1,3 +1,15 @@
+2015-04-02 Timothy Horton <[email protected]>
+
+ De-PLATFORM(IOS)-ify LayerHostingContext::setFencePort
+ https://bugs.webkit.org/show_bug.cgi?id=143342
+
+ Reviewed by Myles C. Maxfield.
+
+ * Platform/mac/LayerHostingContext.h:
+ * Platform/mac/LayerHostingContext.mm:
+ (WebKit::LayerHostingContext::setFencePort):
+ There's nothing iOS specific about this.
+
2015-04-02 Oliver Hunt <[email protected]>
Ensure that we always set network ATS context in the network process
Modified: trunk/Source/WebKit2/Platform/mac/LayerHostingContext.h (182290 => 182291)
--- trunk/Source/WebKit2/Platform/mac/LayerHostingContext.h 2015-04-02 22:22:05 UTC (rev 182290)
+++ trunk/Source/WebKit2/Platform/mac/LayerHostingContext.h 2015-04-02 22:23:16 UTC (rev 182291)
@@ -61,10 +61,8 @@
void setColorSpace(CGColorSpaceRef);
CGColorSpaceRef colorSpace() const;
-
-#if PLATFORM(IOS)
+
void setFencePort(mach_port_t);
-#endif
private:
LayerHostingMode m_layerHostingMode;
Modified: trunk/Source/WebKit2/Platform/mac/LayerHostingContext.mm (182290 => 182291)
--- trunk/Source/WebKit2/Platform/mac/LayerHostingContext.mm 2015-04-02 22:22:05 UTC (rev 182290)
+++ trunk/Source/WebKit2/Platform/mac/LayerHostingContext.mm 2015-04-02 22:23:16 UTC (rev 182291)
@@ -102,11 +102,9 @@
return [m_context colorSpace];
}
-#if PLATFORM(IOS)
void LayerHostingContext::setFencePort(mach_port_t fencePort)
{
[m_context setFencePort:fencePort];
}
-#endif
} // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes