Title: [181776] trunk/Source/WebKit2
Revision
181776
Author
jber...@webkit.org
Date
2015-03-19 18:52:57 -0700 (Thu, 19 Mar 2015)

Log Message

32-bit build fix after r181770.

* UIProcess/mac/WKFullScreenWindowController.mm:
(-[WKFullScreenWindowController initWithWindow:webView:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (181775 => 181776)


--- trunk/Source/WebKit2/ChangeLog	2015-03-20 01:37:14 UTC (rev 181775)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-20 01:52:57 UTC (rev 181776)
@@ -1,3 +1,10 @@
+2015-03-19  Jessie Berlin  <jber...@webkit.org>
+
+        32-bit build fix after r181770.
+
+        * UIProcess/mac/WKFullScreenWindowController.mm:
+        (-[WKFullScreenWindowController initWithWindow:webView:]):
+
 2015-03-19  Anders Carlsson  <ander...@apple.com>
 
         Add support for deleting individual cache entries

Modified: trunk/Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.mm (181775 => 181776)


--- trunk/Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.mm	2015-03-20 01:37:14 UTC (rev 181775)
+++ trunk/Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.mm	2015-03-20 01:52:57 UTC (rev 181776)
@@ -104,7 +104,7 @@
     [_clipView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
     CALayer *maskLayer = [CALayer layer];
     maskLayer.anchorPoint = CGPointZero;
-    maskLayer.frame = contentView.bounds;
+    maskLayer.frame = NSRectToCGRect(contentView.bounds);
     maskLayer.backgroundColor = CGColorGetConstantColor(kCGColorBlack);
     [_clipView layer].mask = maskLayer;
     [contentView addSubview:_clipView.get()];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to