⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185754 in webkit


Ignore:
Timestamp:
Jun 19, 2015, 10:38:24 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

cancelPreviousPerformRequestsWithTarget for -resolveBounds in wrong class.
https://bugs.webkit.org/show_bug.cgi?id=146140

Patch by Jeremy Jones <jeremyj@apple.com> on 2015-06-19
Reviewed by Eric Carlson.

  • platform/ios/WebVideoFullscreenInterfaceAVKit.mm:

(-[WebCALayerHostWrapper dealloc]): Added.
(-[WebAVVideoLayer dealloc]): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r185752 r185754  
     12015-06-19  Jeremy Jones  <jeremyj@apple.com>
     2
     3        cancelPreviousPerformRequestsWithTarget for -resolveBounds in wrong class.
     4        https://bugs.webkit.org/show_bug.cgi?id=146140
     5
     6        Reviewed by Eric Carlson.
     7
     8        * platform/ios/WebVideoFullscreenInterfaceAVKit.mm:
     9        (-[WebCALayerHostWrapper dealloc]): Added.
     10        (-[WebAVVideoLayer dealloc]): Deleted.
     11
    1122015-06-19  Per Arne Vollan  <peavo@outlook.com>
    213
  • trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm

    r185733 r185754  
    570570}
    571571
     572- (void)dealloc
     573{
     574    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(resolveBounds) object:nil];
     575    [super dealloc];
     576}
     577
    572578- (void)setVideoSublayer:(CALayer*)videoSublayer
    573579{
     
    662668}
    663669
    664 - (void)dealloc
    665 {
    666     [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(resolveBounds) object:nil];
    667     [super dealloc];
    668 }
    669 
    670670- (void)setPlayerController:(AVPlayerController *)playerController
    671671{
Note: See TracChangeset for help on using the changeset viewer.