Title: [208652] trunk/Source/WebCore
Revision
208652
Author
[email protected]
Date
2016-11-12 09:43:40 -0800 (Sat, 12 Nov 2016)

Log Message

Tried to fix the 32-bit build.

* platform/mac/WebPlaybackControlsManager.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208651 => 208652)


--- trunk/Source/WebCore/ChangeLog	2016-11-12 17:40:45 UTC (rev 208651)
+++ trunk/Source/WebCore/ChangeLog	2016-11-12 17:43:40 UTC (rev 208652)
@@ -2,6 +2,12 @@
 
         Tried to fix the 32-bit build.
 
+        * platform/mac/WebPlaybackControlsManager.mm:
+
+2016-11-12  Dan Bernstein  <[email protected]>
+
+        Tried to fix the 32-bit build.
+
         * platform/mac/WebPlaybackControlsManager.h:
 
 2016-11-12  Dan Bernstein  <[email protected]>

Modified: trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm (208651 => 208652)


--- trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm	2016-11-12 17:40:45 UTC (rev 208651)
+++ trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm	2016-11-12 17:43:40 UTC (rev 208652)
@@ -39,12 +39,14 @@
 using namespace WebCore;
 
 @synthesize contentDuration=_contentDuration;
-@synthesize seekToTime=_seekToTime;
 @synthesize hasEnabledAudio=_hasEnabledAudio;
 @synthesize hasEnabledVideo=_hasEnabledVideo;
 @synthesize rate=_rate;
 @synthesize playing=_playing;
 @synthesize canTogglePlayback=_canTogglePlayback;
+#if ENABLE(WEB_PLAYBACK_CONTROLS_MANAGER)
+@synthesize seekToTime=_seekToTime;
+#endif
 
 - (WebPlaybackSessionInterfaceMac*)webPlaybackSessionInterfaceMac
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to