Title: [171346] trunk/Source/WebKit2
Revision
171346
Author
commit-qu...@webkit.org
Date
2014-07-22 10:32:38 -0700 (Tue, 22 Jul 2014)

Log Message

Fix unused parameter build warning in UIProcess module
https://bugs.webkit.org/show_bug.cgi?id=135154

Patch by Shivakumar JM <shiva...@samsung.com> on 2014-07-22
Reviewed by Alexey Proskuryakov.

Fix unused parameter build warning in UIProcess module by using UNUSED_PARAM macro.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (171345 => 171346)


--- trunk/Source/WebKit2/ChangeLog	2014-07-22 17:19:21 UTC (rev 171345)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-22 17:32:38 UTC (rev 171346)
@@ -1,3 +1,15 @@
+2014-07-22  Shivakumar JM  <shiva...@samsung.com>
+
+        Fix unused parameter build warning in UIProcess module
+        https://bugs.webkit.org/show_bug.cgi?id=135154
+
+        Reviewed by Alexey Proskuryakov.
+
+        Fix unused parameter build warning in UIProcess module by using UNUSED_PARAM macro.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::viewStateDidChange):
+
 2014-07-22  Jeremy Jones  <jere...@apple.com>
 
         Don't create new UIWindow for video fullscreen.

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (171345 => 171346)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-07-22 17:19:21 UTC (rev 171345)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-07-22 17:32:38 UTC (rev 171346)
@@ -1137,6 +1137,7 @@
     }
     m_viewStateChangeDispatcher->schedule();
 #else
+    UNUSED_PARAM(dispatchMode);
     dispatchViewStateChange();
 #endif
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to