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

Changeset 181445 in webkit


Ignore:
Timestamp:
Mar 12, 2015, 10:46:30 AM (11 years ago)
Author:
andersca@apple.com
Message:

WKErrorDomain should be declared nonnull
https://bugs.webkit.org/show_bug.cgi?id=142628

Reviewed by Antti Koivisto.

Add WK_ASSUME_NONNULL_BEGIN and WK_ASSUME_NONNULL_END so everything will be implicitly nonnull.

  • UIProcess/API/Cocoa/WKError.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r181443 r181445  
     12015-03-12  Anders Carlsson  <andersca@apple.com>
     2
     3        WKErrorDomain should be declared nonnull
     4        https://bugs.webkit.org/show_bug.cgi?id=142628
     5
     6        Reviewed by Antti Koivisto.
     7
     8        Add WK_ASSUME_NONNULL_BEGIN and WK_ASSUME_NONNULL_END so everything will be implicitly nonnull.
     9
     10        * UIProcess/API/Cocoa/WKError.h:
     11
    1122015-03-12  Ian Henderson  <ian@ianhenderson.org>
    213
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKError.h

    r169769 r181445  
    3030#import <Foundation/Foundation.h>
    3131
     32WK_ASSUME_NONNULL_BEGIN
     33
    3234/*! @constant WKErrorDomain Indicates a WebKit error. */
    3335WK_EXTERN NSString * const WKErrorDomain WK_AVAILABLE(10_10, 8_0);
     
    4749} WK_ENUM_AVAILABLE(10_10, 8_0);
    4850
     51WK_ASSUME_NONNULL_END
     52
    4953#endif
Note: See TracChangeset for help on using the changeset viewer.