Title: [178680] trunk/Source/WebKit/mac
Revision
178680
Author
bda...@apple.com
Date
2015-01-19 16:17:42 -0800 (Mon, 19 Jan 2015)

Log Message

Speculative build fix.

* WebView/WebView.mm:
(-[WebView _convertRectFromRootView:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (178679 => 178680)


--- trunk/Source/WebKit/mac/ChangeLog	2015-01-19 23:46:06 UTC (rev 178679)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-01-20 00:17:42 UTC (rev 178680)
@@ -1,3 +1,10 @@
+2015-01-19  Beth Dakin  <bda...@apple.com>
+
+        Speculative build fix.
+
+        * WebView/WebView.mm:
+        (-[WebView _convertRectFromRootView:]):
+
 2015-01-19  Timothy Horton  <timothy_hor...@apple.com>
 
         Adjust naming of action menu SPI

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (178679 => 178680)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2015-01-19 23:46:06 UTC (rev 178679)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2015-01-20 00:17:42 UTC (rev 178680)
@@ -8572,8 +8572,10 @@
 
 - (NSRect)_convertRectFromRootView:(NSRect)rect
 {
+#if PLATFORM(MAC)
     if (self.isFlipped)
         return rect;
+#endif
     return NSMakeRect(rect.origin.x, [self bounds].size.height - rect.origin.y - rect.size.height, rect.size.width, rect.size.height);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to