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

Log Message

Follow-up: fix the OpenSource build on Mac after r208642
https://bugs.webkit.org/show_bug.cgi?id=164677

Reviewed by Ryosuke Niwa.

The playbackControlsController property should also be `assign`.

* platform/spi/cocoa/AVKitSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208644 => 208645)


--- trunk/Source/WebCore/ChangeLog	2016-11-12 08:23:55 UTC (rev 208644)
+++ trunk/Source/WebCore/ChangeLog	2016-11-12 08:43:59 UTC (rev 208645)
@@ -1,3 +1,14 @@
+2016-11-12  Wenson Hsieh  <[email protected]>
+
+        Follow-up: fix the OpenSource build on Mac after r208642
+        https://bugs.webkit.org/show_bug.cgi?id=164677
+
+        Reviewed by Ryosuke Niwa.
+
+        The playbackControlsController property should also be `assign`.
+
+        * platform/spi/cocoa/AVKitSPI.h:
+
 2016-11-11  Wenson Hsieh  <[email protected]>
 
         SPI imports in AVKitSPI.h should be guarded by USE(APPLE_INTERNAL_SDK)

Modified: trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h (208644 => 208645)


--- trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h	2016-11-12 08:23:55 UTC (rev 208644)
+++ trunk/Source/WebCore/platform/spi/cocoa/AVKitSPI.h	2016-11-12 08:43:59 UTC (rev 208645)
@@ -172,7 +172,7 @@
 
 @interface AVFunctionBarPlaybackControlsProvider : NSResponder
 @property (strong, readonly, nullable) NSTouchBar *touchBar;
-@property (nullable) id<AVFunctionBarPlaybackControlsControlling> playbackControlsController;
+@property (assign, nullable) id<AVFunctionBarPlaybackControlsControlling> playbackControlsController;
 @end
 
 @interface AVFunctionBarScrubber : NSView
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to