Title: [199187] trunk/Source/WebCore
Revision
199187
Author
[email protected]
Date
2016-04-07 14:55:26 -0700 (Thu, 07 Apr 2016)

Log Message

Attempted build fix.

* platform/mac/WebVideoFullscreenInterfaceMac.mm:
(-[WebPlaybackControlsManager seekToTime:toleranceBefore:toleranceAfter:]):
(-[WebPlaybackControlsManager setCurrentAudioMediaSelectionOption:]):
(-[WebPlaybackControlsManager setCurrentLegibleMediaSelectionOption:]):
(-[WebPlaybackControlsManager currentAudioMediaSelectionOption]): Deleted.
(-[WebPlaybackControlsManager currentLegibleMediaSelectionOption]): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (199186 => 199187)


--- trunk/Source/WebCore/ChangeLog	2016-04-07 21:51:45 UTC (rev 199186)
+++ trunk/Source/WebCore/ChangeLog	2016-04-07 21:55:26 UTC (rev 199187)
@@ -1,3 +1,14 @@
+2016-04-07  Beth Dakin  <[email protected]>
+
+        Attempted build fix.
+
+        * platform/mac/WebVideoFullscreenInterfaceMac.mm:
+        (-[WebPlaybackControlsManager seekToTime:toleranceBefore:toleranceAfter:]):
+        (-[WebPlaybackControlsManager setCurrentAudioMediaSelectionOption:]):
+        (-[WebPlaybackControlsManager setCurrentLegibleMediaSelectionOption:]):
+        (-[WebPlaybackControlsManager currentAudioMediaSelectionOption]): Deleted.
+        (-[WebPlaybackControlsManager currentLegibleMediaSelectionOption]): Deleted.
+
 2016-04-07  Ada Chan  <[email protected]>
 
         Add WebKitAdditions extension point in HTMLVideoElement::supportsFullscreen()

Modified: trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm (199186 => 199187)


--- trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm	2016-04-07 21:51:45 UTC (rev 199186)
+++ trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm	2016-04-07 21:55:26 UTC (rev 199187)
@@ -53,6 +53,7 @@
 @end
 
 @implementation WebAVMediaSelectionOptionMac
+@synthesize localizedDisplayName=_localizedDisplayName;
 @end
 
 @interface WebPlaybackControlsManager : NSObject {
@@ -125,11 +126,6 @@
     _webVideoFullscreenInterfaceMac->webVideoFullscreenModel()->seekToTime(time);
 }
 
-- (AVMediaSelectionOption *)currentAudioMediaSelectionOption
-{
-    return _currentAudioMediaSelectionOption;
-}
-
 - (void)setCurrentAudioMediaSelectionOption:(AVMediaSelectionOption *)audioMediaSelectionOption
 {
     if (audioMediaSelectionOption == _currentAudioMediaSelectionOption)
@@ -145,11 +141,6 @@
     _webVideoFullscreenInterfaceMac->webVideoFullscreenModel()->selectAudioMediaOption(index != NSNotFound ? index : UINT64_MAX);
 }
 
-- (AVMediaSelectionOption *)currentLegibleMediaSelectionOption
-{
-    return _currentLegibleMediaSelectionOption;
-}
-
 - (void)setCurrentLegibleMediaSelectionOption:(AVMediaSelectionOption *)legibleMediaSelectionOption
 {
     if (legibleMediaSelectionOption == _currentLegibleMediaSelectionOption)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to