Title: [215216] trunk/Source/WebCore
Revision
215216
Author
[email protected]
Date
2017-04-10 21:57:59 -0700 (Mon, 10 Apr 2017)

Log Message

PlayerLayerView +layerClass methods should use return type Class.
https://bugs.webkit.org/show_bug.cgi?id=165406

Patch by Jeremy Jones <[email protected]> on 2017-04-10
Reviewed by Sam Weinig.

No new tests because not behavior change.

* platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
(WebAVPictureInPicturePlayerLayerView_layerClass):
(WebAVPlayerLayerView_layerClass):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215215 => 215216)


--- trunk/Source/WebCore/ChangeLog	2017-04-11 03:33:56 UTC (rev 215215)
+++ trunk/Source/WebCore/ChangeLog	2017-04-11 04:57:59 UTC (rev 215216)
@@ -1,3 +1,16 @@
+2017-04-10  Jeremy Jones  <[email protected]>
+
+        PlayerLayerView +layerClass methods should use return type Class.
+        https://bugs.webkit.org/show_bug.cgi?id=165406
+
+        Reviewed by Sam Weinig.
+
+        No new tests because not behavior change.
+
+        * platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
+        (WebAVPictureInPicturePlayerLayerView_layerClass):
+        (WebAVPlayerLayerView_layerClass):
+
 2017-04-10  Said Abou-Hallawa  <[email protected]>
 
         CachedImage should stop decoding images when unknown type is detected

Modified: trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm (215215 => 215216)


--- trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2017-04-11 03:33:56 UTC (rev 215215)
+++ trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm	2017-04-11 04:57:59 UTC (rev 215216)
@@ -351,7 +351,7 @@
 @interface WebAVPictureInPicturePlayerLayerView : UIView
 @end
 
-static CALayer* WebAVPictureInPicturePlayerLayerView_layerClass(id, SEL)
+static Class WebAVPictureInPicturePlayerLayerView_layerClass(id, SEL)
 {
     return [WebAVPlayerLayer class];
 }
@@ -374,7 +374,7 @@
 @property (retain) UIView* videoView;
 @end
 
-static CALayer *WebAVPlayerLayerView_layerClass(id, SEL)
+static Class WebAVPlayerLayerView_layerClass(id, SEL)
 {
     return [WebAVPlayerLayer class];
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to