Title: [181846] trunk/Source/WebKit/mac
Revision
181846
Author
[email protected]
Date
2015-03-22 23:58:35 -0700 (Sun, 22 Mar 2015)

Log Message

Build fix.

* WebView/WebView.mm: (-[WebView _showPlaybackTargetPicker:hasVideo:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (181845 => 181846)


--- trunk/Source/WebKit/mac/ChangeLog	2015-03-23 05:04:46 UTC (rev 181845)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-03-23 06:58:35 UTC (rev 181846)
@@ -1,3 +1,9 @@
+2015-03-22  Alexey Proskuryakov  <[email protected]>
+
+        Build fix.
+
+        * WebView/WebView.mm: (-[WebView _showPlaybackTargetPicker:hasVideo:]):
+
 2015-03-22  Eric Carlson  <[email protected]>
 
         [Mac] Enable WIRELESS_PLAYBACK_TARGET for WK1

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (181845 => 181846)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2015-03-23 05:04:46 UTC (rev 181845)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2015-03-23 06:58:35 UTC (rev 181846)
@@ -8665,7 +8665,7 @@
     if (!_private->page)
         return;
 
-    NSRect rectInWindowCoordinates = [self convertRect:[self _convertRectFromRootView:CGRectMake(location.x(), location.y(), 0, 0)] toView:nil];
+    NSRect rectInWindowCoordinates = [self convertRect:[self _convertRectFromRootView:NSMakeRect(location.x(), location.y(), 0, 0)] toView:nil];
     NSRect rectInScreenCoordinates = [self.window convertRectToScreen:rectInWindowCoordinates];
     [self _devicePicker]->showPlaybackTargetPicker(rectInScreenCoordinates, hasVideo);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to