Title: [219456] trunk/Source/WebCore
- Revision
- 219456
- Author
- commit-qu...@webkit.org
- Date
- 2017-07-13 11:19:38 -0700 (Thu, 13 Jul 2017)
Log Message
Fix block style in WebVideoFullscreen classes.
https://bugs.webkit.org/show_bug.cgi?id=174446
Patch by Jeremy Jones <jere...@apple.com> on 2017-07-13
Reviewed by Eric Carlson.
No behavior change.
* platform/ios/WebVideoFullscreenControllerAVKit.mm:
(WebVideoFullscreenControllerContext::setVideoLayerFrame):
* platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
(-[WebAVPlayerLayer layoutSublayers]):
(getWebAVPictureInPicturePlayerLayerViewClass):
(getWebAVPlayerLayerViewClass):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (219455 => 219456)
--- trunk/Source/WebCore/ChangeLog 2017-07-13 18:17:48 UTC (rev 219455)
+++ trunk/Source/WebCore/ChangeLog 2017-07-13 18:19:38 UTC (rev 219456)
@@ -1,3 +1,19 @@
+2017-07-13 Jeremy Jones <jere...@apple.com>
+
+ Fix block style in WebVideoFullscreen classes.
+ https://bugs.webkit.org/show_bug.cgi?id=174446
+
+ Reviewed by Eric Carlson.
+
+ No behavior change.
+
+ * platform/ios/WebVideoFullscreenControllerAVKit.mm:
+ (WebVideoFullscreenControllerContext::setVideoLayerFrame):
+ * platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
+ (-[WebAVPlayerLayer layoutSublayers]):
+ (getWebAVPictureInPicturePlayerLayerViewClass):
+ (getWebAVPlayerLayerViewClass):
+
2017-07-13 Joseph Pecoraro <pecor...@apple.com>
Web Inspector: Remove unused and untested Page domain commands
Modified: trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm (219455 => 219456)
--- trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm 2017-07-13 18:17:48 UTC (rev 219455)
+++ trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm 2017-07-13 18:19:38 UTC (rev 219456)
@@ -493,7 +493,7 @@
[videoFullscreenLayer setSublayerTransform:[videoFullscreenLayer transform]];
- dispatch_async(dispatch_get_main_queue(), ^{
+ dispatch_async(dispatch_get_main_queue(), ^ {
WebThreadRun([protectedThis, this, frame, videoFullscreenLayer] {
[CATransaction begin];
[CATransaction setDisableActions:YES];
Modified: trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm (219455 => 219456)
--- trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm 2017-07-13 18:17:48 UTC (rev 219455)
+++ trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm 2017-07-13 18:19:38 UTC (rev 219456)
@@ -272,7 +272,7 @@
[view setTransform:transform];
NSTimeInterval animationDuration = [CATransaction animationDuration];
- dispatch_async(dispatch_get_main_queue(), ^{
+ dispatch_async(dispatch_get_main_queue(), ^ {
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(resolveBounds) object:nil];
[self performSelector:@selector(resolveBounds) withObject:nil afterDelay:animationDuration + 0.1];
@@ -365,7 +365,7 @@
{
static Class theClass = nil;
static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
+ dispatch_once(&onceToken, ^ {
theClass = objc_allocateClassPair(getUIViewClass(), "WebAVPictureInPicturePlayerLayerView", 0);
objc_registerClassPair(theClass);
Class metaClass = objc_getMetaClass("WebAVPictureInPicturePlayerLayerView");
@@ -471,7 +471,7 @@
{
static Class theClass = nil;
static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
+ dispatch_once(&onceToken, ^ {
theClass = objc_allocateClassPair(get__AVPlayerLayerViewClass(), "WebAVPlayerLayerView", 0);
class_addMethod(theClass, @selector(dealloc), (IMP)WebAVPlayerLayerView_dealloc, "v@:");
class_addMethod(theClass, @selector(setPlayerController:), (IMP)WebAVPlayerLayerView_setPlayerController, "v@:@");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes