Changeset 285206 in webkit


Ignore:
Timestamp:
Nov 3, 2021, 9:05:14 AM (4 years ago)
Author:
Chris Dumez
Message:

Unreviewed iOS build fix.

  • WebCoreSupport/WebNotificationClient.mm:

(-[WebNotificationPolicyListener NO_RETURN_DUE_TO_ASSERT]):
(-[WebNotificationPolicyListener denyOnlyThisRequest]): Deleted.
(-[WebNotificationPolicyListener shouldClearCache]): Deleted.

Location:
trunk/Source/WebKitLegacy/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r285148 r285206  
     12021-11-03  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed iOS build fix.
     4
     5        * WebCoreSupport/WebNotificationClient.mm:
     6        (-[WebNotificationPolicyListener NO_RETURN_DUE_TO_ASSERT]):
     7        (-[WebNotificationPolicyListener denyOnlyThisRequest]): Deleted.
     8        (-[WebNotificationPolicyListener shouldClearCache]): Deleted.
     9
    1102021-11-01  Brady Eidson  <beidson@apple.com>
    211
  • trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebNotificationClient.mm

    r284428 r285206  
    193193
    194194#if PLATFORM(IOS_FAMILY)
    195 - (void)denyOnlyThisRequest
     195- (void)denyOnlyThisRequest NO_RETURN_DUE_TO_ASSERT
    196196{
    197197    ASSERT_NOT_REACHED();
    198198}
    199199
    200 - (BOOL)shouldClearCache
     200- (BOOL)shouldClearCache NO_RETURN_DUE_TO_ASSERT
    201201{
    202202    ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.