Title: [202917] trunk/Source/WebCore
- Revision
- 202917
- Author
- [email protected]
- Date
- 2016-07-07 10:30:14 -0700 (Thu, 07 Jul 2016)
Log Message
Unreviewed build fix after r202908. Fix the webPlaybackSessionInterfaceMac @property.
* platform/mac/WebPlaybackControlsManager.h:
* platform/mac/WebPlaybackControlsManager.mm:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (202916 => 202917)
--- trunk/Source/WebCore/ChangeLog 2016-07-07 17:27:17 UTC (rev 202916)
+++ trunk/Source/WebCore/ChangeLog 2016-07-07 17:30:14 UTC (rev 202917)
@@ -1,3 +1,10 @@
+2016-07-07 Jer Noble <[email protected]>
+
+ Unreviewed build fix after r202908. Fix the webPlaybackSessionInterfaceMac @property.
+
+ * platform/mac/WebPlaybackControlsManager.h:
+ * platform/mac/WebPlaybackControlsManager.mm:
+
2016-07-07 Youenn Fablet <[email protected]>
[Fetch API] Response constructor should throw in case of bad reason phrase
Modified: trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.h (202916 => 202917)
--- trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.h 2016-07-07 17:27:17 UTC (rev 202916)
+++ trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.h 2016-07-07 17:30:14 UTC (rev 202917)
@@ -56,7 +56,7 @@
RefPtr<WebCore::WebPlaybackSessionInterfaceMac> _webPlaybackSessionInterfaceMac;
}
-@property (retain) WebCore::WebPlaybackSessionInterfaceMac* webPlaybackSessionInterfaceMac;
+@property (assign) WebCore::WebPlaybackSessionInterfaceMac* webPlaybackSessionInterfaceMac;
@property (readwrite) NSTimeInterval contentDuration;
@property (nonatomic, retain, readwrite) AVValueTiming *timing;
@property (nonatomic, retain, readwrite) NSArray *seekableTimeRanges;
Modified: trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm (202916 => 202917)
--- trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm 2016-07-07 17:27:17 UTC (rev 202916)
+++ trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm 2016-07-07 17:30:14 UTC (rev 202917)
@@ -31,6 +31,9 @@
#if USE(APPLE_INTERNAL_SDK) && ENABLE(WEB_PLAYBACK_CONTROLS_MANAGER)
#import <WebKitAdditions/WebPlaybackControlsControllerAdditions.mm>
#else
+
+#import "WebPlaybackSessionInterfaceMac.h"
+
@implementation WebPlaybackControlsManager
using namespace WebCore;
@@ -42,8 +45,6 @@
@synthesize playing=_playing;
@synthesize canTogglePlayback=_canTogglePlayback;
-@synthesize webPlaybackSessionInterfaceMac=_webPlaybackSessionInterfaceMac;
-
- (WebPlaybackSessionInterfaceMac*)webPlaybackSessionInterfaceMac
{
return _webPlaybackSessionInterfaceMac.get();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes