Changeset 256373 in webkit


Ignore:
Timestamp:
Feb 11, 2020 2:36:56 PM (4 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r256345.

Broke iOS builds.

Reverted changeset:

"Deprecate _WKUserContentWorld replaced by WKContentWorld"
https://bugs.webkit.org/show_bug.cgi?id=207514
https://trac.webkit.org/changeset/256345

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r256371 r256373  
     12020-02-11  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r256345.
     4
     5        Broke iOS builds.
     6
     7        Reverted changeset:
     8
     9        "Deprecate _WKUserContentWorld replaced by WKContentWorld"
     10        https://bugs.webkit.org/show_bug.cgi?id=207514
     11        https://trac.webkit.org/changeset/256345
     12
    1132020-02-11  Per Arne Vollan  <pvollan@apple.com>
    214
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKUserContentWorld.h

    r256345 r256373  
    2828NS_ASSUME_NONNULL_BEGIN
    2929
    30 @class WKContentWorld;
    31 
    3230WK_CLASS_DEPRECATED_WITH_REPLACEMENT("WKContentWorld", macos(10.12, WK_MAC_TBA), ios(10.0, WK_IOS_TBA))
    3331@interface _WKUserContentWorld : NSObject
     
    3634+ (_WKUserContentWorld *)normalWorld;
    3735
    38 @property (nonatomic, copy, readonly) WKContentWorld *contentWorld WK_API_AVAILABLE(WK_MAC_TBA, WK_IOS_TBA);
    39 
    4036@property (nullable, nonatomic, readonly, copy) NSString *name;
    4137
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKUserContentWorld.mm

    r256345 r256373  
    2727#import "_WKUserContentWorldInternal.h"
    2828
    29 #import "WKContentWorldInternal.h"
    30 
    3129ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    3230@implementation _WKUserContentWorld
     
    5654}
    5755
    58 - (WKContentWorld *)contentWorld
    59 {
    60     return wrapper(API::ContentWorld::fromUserContentWorld(*_userContentWorld));
    61 }
    62 
    6356#pragma mark WKObject protocol implementation
    6457
Note: See TracChangeset for help on using the changeset viewer.