Title: [197219] trunk/Source/WebCore
Revision
197219
Author
[email protected]
Date
2016-02-26 16:15:46 -0800 (Fri, 26 Feb 2016)

Log Message

32-bit!!!

* platform/mac/WebVideoFullscreenInterfaceMac.mm:
(-[WebPlaybackControlsManager initWithWebVideoFullscreenInterfaceMac:]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197218 => 197219)


--- trunk/Source/WebCore/ChangeLog	2016-02-27 00:02:02 UTC (rev 197218)
+++ trunk/Source/WebCore/ChangeLog	2016-02-27 00:15:46 UTC (rev 197219)
@@ -1,5 +1,12 @@
 2016-02-26  Beth Dakin  <[email protected]>
 
+        32-bit!!!
+
+        * platform/mac/WebVideoFullscreenInterfaceMac.mm:
+        (-[WebPlaybackControlsManager initWithWebVideoFullscreenInterfaceMac:]):
+
+2016-02-26  Beth Dakin  <[email protected]>
+
         Another 32-bit build fix.
 
         * platform/spi/cocoa/AVKitSPI.h:

Modified: trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm (197218 => 197219)


--- trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm	2016-02-27 00:02:02 UTC (rev 197218)
+++ trunk/Source/WebCore/platform/mac/WebVideoFullscreenInterfaceMac.mm	2016-02-27 00:15:46 UTC (rev 197219)
@@ -49,6 +49,14 @@
 using namespace WebCore;
 
 @interface WebPlaybackControlsManager : NSObject {
+    NSTimeInterval _contentDuration;
+    AVValueTiming *_timing;
+    NSTimeInterval _seekToTime;
+    NSArray *_seekableTimeRanges;
+    BOOL _hasEnabledAudio;
+    BOOL _hasEnabledVideo;
+    float _rate;
+
 @private
     WebCore::WebVideoFullscreenInterfaceMac* _webVideoFullscreenInterfaceMac;
 }
@@ -72,13 +80,13 @@
 
 @implementation WebPlaybackControlsManager
 
-@synthesize contentDuration;
-@synthesize timing;
-@synthesize seekToTime;
-@synthesize seekableTimeRanges;
-@synthesize hasEnabledAudio;
-@synthesize hasEnabledVideo;
-@synthesize rate;
+@synthesize contentDuration = _contentDuration;
+@synthesize timing = _timing;
+@synthesize seekToTime = _seekToTime;
+@synthesize seekableTimeRanges = _seekableTimeRanges;
+@synthesize hasEnabledAudio = _hasEnabledAudio;
+@synthesize hasEnabledVideo = _hasEnabledVideo;
+@synthesize rate = _rate;
 
 - (instancetype)initWithWebVideoFullscreenInterfaceMac:(WebCore::WebVideoFullscreenInterfaceMac*)webVideoFullscreenInterfaceMac
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to