Title: [230032] trunk/Source/WebKit
Revision
230032
Author
[email protected]
Date
2018-03-28 09:52:58 -0700 (Wed, 28 Mar 2018)

Log Message

Fails to build webkitgtk+ after git-svn-id: http://svn.webkit.org/repository/webkit/trunk@229877 268f45cc-cd09-0410-ab3c-d52691b4dbfc
https://bugs.webkit.org/show_bug.cgi?id=184081

Unreviewed, switch to use UNUSED_PARAM()

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::decidePolicyForNavigationAction):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (230031 => 230032)


--- trunk/Source/WebKit/ChangeLog	2018-03-28 16:39:57 UTC (rev 230031)
+++ trunk/Source/WebKit/ChangeLog	2018-03-28 16:52:58 UTC (rev 230032)
@@ -1,3 +1,13 @@
+2018-03-28  Michael Catanzaro  <[email protected]>
+
+        Fails to build webkitgtk+ after git-svn-id: http://svn.webkit.org/repository/webkit/trunk@229877 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+        https://bugs.webkit.org/show_bug.cgi?id=184081
+
+        Unreviewed, switch to use UNUSED_PARAM()
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::decidePolicyForNavigationAction):
+
 2018-03-28  Tim Horton  <[email protected]>
 
         Make use of HAVE(CORE_ANIMATION_RENDER_SERVER) in more places

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (230031 => 230032)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-03-28 16:39:57 UTC (rev 230031)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-03-28 16:52:58 UTC (rev 230032)
@@ -3827,7 +3827,7 @@
     if (frame->didHandleContentFilterUnblockNavigation(request))
         return receivedPolicyDecision(PolicyAction::Ignore, *frame, listenerID, &m_navigationState->navigation(newNavigationID), { });
 #else
-    UNUSED(newNavigationID);
+    UNUSED_PARAM(newNavigationID);
 #endif
 
     WebFrameProxy* originatingFrame = m_process->webFrame(originatingFrameInfoData.frameID);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to