Title: [199832] trunk/Source/WebCore
Revision
199832
Author
bda...@apple.com
Date
2016-04-21 13:21:03 -0700 (Thu, 21 Apr 2016)

Log Message

Build fix.

* platform/mac/WebPlaybackSessionInterfaceMac.mm:
(WebCore::WebPlaybackSessionInterfaceMac::setAudioMediaSelectionOptions):
(WebCore::WebPlaybackSessionInterfaceMac::setLegibleMediaSelectionOptions):
(WebCore::WebPlaybackSessionInterfaceMac::invalidate):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (199831 => 199832)


--- trunk/Source/WebCore/ChangeLog	2016-04-21 20:18:28 UTC (rev 199831)
+++ trunk/Source/WebCore/ChangeLog	2016-04-21 20:21:03 UTC (rev 199832)
@@ -1,5 +1,14 @@
 2016-04-21  Beth Dakin  <bda...@apple.com>
 
+        Build fix.
+
+        * platform/mac/WebPlaybackSessionInterfaceMac.mm:
+        (WebCore::WebPlaybackSessionInterfaceMac::setAudioMediaSelectionOptions):
+        (WebCore::WebPlaybackSessionInterfaceMac::setLegibleMediaSelectionOptions):
+        (WebCore::WebPlaybackSessionInterfaceMac::invalidate):
+
+2016-04-21  Beth Dakin  <bda...@apple.com>
+
         32 bit build fix.
 
         * platform/mac/WebPlaybackSessionInterfaceMac.mm:

Modified: trunk/Source/WebCore/platform/mac/WebPlaybackSessionInterfaceMac.mm (199831 => 199832)


--- trunk/Source/WebCore/platform/mac/WebPlaybackSessionInterfaceMac.mm	2016-04-21 20:18:28 UTC (rev 199831)
+++ trunk/Source/WebCore/platform/mac/WebPlaybackSessionInterfaceMac.mm	2016-04-21 20:21:03 UTC (rev 199832)
@@ -179,13 +179,13 @@
 void WebPlaybackSessionInterfaceMac::setAudioMediaSelectionOptions(const Vector<WTF::String>& options, uint64_t selectedIndex)
 {
     WebPlaybackControlsManager* controlsManager = playBackControlsManager();
-    [controlsManager setAudioMediaSelectionOptions:options withSelectedIndex:selectedIndex];
+    [controlsManager setAudioMediaSelectionOptions:options withSelectedIndex:static_cast<NSUInteger>(selectedIndex)];
 }
 
 void WebPlaybackSessionInterfaceMac::setLegibleMediaSelectionOptions(const Vector<WTF::String>& options, uint64_t selectedIndex)
 {
     WebPlaybackControlsManager* controlsManager = playBackControlsManager();
-    [controlsManager setLegibleMediaSelectionOptions:options withSelectedIndex:selectedIndex];
+    [controlsManager setLegibleMediaSelectionOptions:options withSelectedIndex:static_cast<NSUInteger>(selectedIndex)];
 }
 
 void WebPlaybackSessionInterfaceMac::invalidate()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to