Title: [181445] trunk/Source/WebKit2
Revision
181445
Author
[email protected]
Date
2015-03-12 10:46:30 -0700 (Thu, 12 Mar 2015)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (181444 => 181445)


--- trunk/Source/WebKit2/ChangeLog	2015-03-12 17:41:25 UTC (rev 181444)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-12 17:46:30 UTC (rev 181445)
@@ -1,3 +1,14 @@
+2015-03-12  Anders Carlsson  <[email protected]>
+
+        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:
+
 2015-03-12  Ian Henderson  <[email protected]>
 
         PDFs don't snapshot properly in iOS Safari

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKError.h (181444 => 181445)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKError.h	2015-03-12 17:41:25 UTC (rev 181444)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKError.h	2015-03-12 17:46:30 UTC (rev 181445)
@@ -29,6 +29,8 @@
 
 #import <Foundation/Foundation.h>
 
+WK_ASSUME_NONNULL_BEGIN
+
 /*! @constant WKErrorDomain Indicates a WebKit error. */
 WK_EXTERN NSString * const WKErrorDomain WK_AVAILABLE(10_10, 8_0);
 
@@ -46,4 +48,6 @@
     WKErrorJavaScriptExceptionOccurred,
 } WK_ENUM_AVAILABLE(10_10, 8_0);
 
+WK_ASSUME_NONNULL_END
+
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to