Title: [152177] trunk/Source/WebKit2
Revision
152177
Author
[email protected]
Date
2013-06-28 10:54:50 -0700 (Fri, 28 Jun 2013)

Log Message

WARN_UNUSED_RESULT can't be used in API headers, but WKBundlePageExtendIncrementalRenderingSuppression tries to
https://bugs.webkit.org/show_bug.cgi?id=118196
<rdar://problem/14303613>

Reviewed by Anders Carlsson.

* WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (152176 => 152177)


--- trunk/Source/WebKit2/ChangeLog	2013-06-28 17:54:00 UTC (rev 152176)
+++ trunk/Source/WebKit2/ChangeLog	2013-06-28 17:54:50 UTC (rev 152177)
@@ -1,3 +1,13 @@
+2013-06-28  Tim Horton  <[email protected]>
+
+        WARN_UNUSED_RESULT can't be used in API headers, but WKBundlePageExtendIncrementalRenderingSuppression tries to
+        https://bugs.webkit.org/show_bug.cgi?id=118196
+        <rdar://problem/14303613>
+
+        Reviewed by Anders Carlsson.
+
+        * WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:
+
 2013-06-28  Andreas Kling  <[email protected]>
 
         Don't fire process-became-responsive callback when disconnecting it.

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h (152176 => 152177)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h	2013-06-28 17:54:00 UTC (rev 152176)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h	2013-06-28 17:54:50 UTC (rev 152177)
@@ -83,7 +83,7 @@
 
 // This only works if the SuppressesIncrementalRendering preference is set as well.
 typedef unsigned WKRenderingSuppressionToken;
-WK_EXPORT WKRenderingSuppressionToken WKBundlePageExtendIncrementalRenderingSuppression(WKBundlePageRef) WARN_UNUSED_RETURN;
+WK_EXPORT WKRenderingSuppressionToken WKBundlePageExtendIncrementalRenderingSuppression(WKBundlePageRef);
 WK_EXPORT void WKBundlePageStopExtendingIncrementalRenderingSuppression(WKBundlePageRef, WKRenderingSuppressionToken);
 
 #ifdef __cplusplus
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to