Changeset 234965 in webkit


Ignore:
Timestamp:
Aug 16, 2018 4:01:36 PM (6 years ago)
Author:
achristensen@apple.com
Message:

Remove unused and deprecated _WKProcessPoolConfiguration.allowsCellularAccess
https://bugs.webkit.org/show_bug.cgi?id=188681

Reviewed by Tim Horton.

  • UIProcess/API/Cocoa/_WKProcessPoolConfiguration.h:
  • UIProcess/API/Cocoa/_WKProcessPoolConfiguration.mm:

(-[_WKProcessPoolConfiguration allowsCellularAccess]): Deleted.
(-[_WKProcessPoolConfiguration setAllowsCellularAccess:]): Deleted.

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r234964 r234965  
     12018-08-16  Alex Christensen  <achristensen@webkit.org>
     2
     3        Remove unused and deprecated _WKProcessPoolConfiguration.allowsCellularAccess
     4        https://bugs.webkit.org/show_bug.cgi?id=188681
     5
     6        Reviewed by Tim Horton.
     7
     8        * UIProcess/API/Cocoa/_WKProcessPoolConfiguration.h:
     9        * UIProcess/API/Cocoa/_WKProcessPoolConfiguration.mm:
     10        (-[_WKProcessPoolConfiguration allowsCellularAccess]): Deleted.
     11        (-[_WKProcessPoolConfiguration setAllowsCellularAccess:]): Deleted.
     12
    1132018-08-16  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKProcessPoolConfiguration.h

    r234668 r234965  
    5757@property (nonatomic, nullable, copy) NSString *sourceApplicationBundleIdentifier WK_API_AVAILABLE(macosx(10.12.3), ios(10.3));
    5858@property (nonatomic, nullable, copy) NSString *sourceApplicationSecondaryIdentifier WK_API_AVAILABLE(macosx(10.12.3), ios(10.3));
    59 @property (nonatomic) BOOL allowsCellularAccess WK_API_DEPRECATED_WITH_REPLACEMENT("WKWebsiteDataStore._allowsCellularAccess", macosx(10.13, 10.13.4), ios(11.0, 11.3));
    6059@property (nonatomic) BOOL shouldCaptureAudioInUIProcess WK_API_AVAILABLE(macosx(10.13), ios(11.0));
    6160#if TARGET_OS_IPHONE
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKProcessPoolConfiguration.mm

    r234668 r234965  
    221221}
    222222
    223 - (BOOL)allowsCellularAccess
    224 {
    225     return YES;
    226 }
    227 
    228 - (void)setAllowsCellularAccess:(BOOL)allowsCellularAccess
    229 {
    230 }
    231 
    232223- (BOOL)shouldCaptureAudioInUIProcess
    233224{
Note: See TracChangeset for help on using the changeset viewer.