Title: [168419] trunk/Source/WebKit2
Revision
168419
Author
commit-qu...@webkit.org
Date
2014-05-07 03:39:48 -0700 (Wed, 07 May 2014)

Log Message

Cleanup the build from unused parameter in UIProcess Module
https://bugs.webkit.org/show_bug.cgi?id=131969

Patch by Shivakumar JM <shiva...@samsung.com> on 2014-05-07
Reviewed by Csaba Osztrogonác.

Fixed unused parameter by omitting the parameter name

* UIProcess/API/C/WKPage.cpp:
(WKPageSetPageFindClient):
* UIProcess/WebFindClient.cpp:
(WebKit::WebFindClient::didFindString):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (168418 => 168419)


--- trunk/Source/WebKit2/ChangeLog	2014-05-07 10:20:14 UTC (rev 168418)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-07 10:39:48 UTC (rev 168419)
@@ -1,3 +1,17 @@
+2014-05-07  Shivakumar JM  <shiva...@samsung.com>
+
+        Cleanup the build from unused parameter in UIProcess Module
+        https://bugs.webkit.org/show_bug.cgi?id=131969
+
+        Reviewed by Csaba Osztrogonác.
+
+        Fixed unused parameter by omitting the parameter name
+
+        * UIProcess/API/C/WKPage.cpp:
+        (WKPageSetPageFindClient):
+        * UIProcess/WebFindClient.cpp:
+        (WebKit::WebFindClient::didFindString):
+
 2014-05-07  Manuel Rego Casasnovas  <r...@igalia.com>
 
         [CSS Grid Layout] Remove runtime feature

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp (168418 => 168419)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-05-07 10:20:14 UTC (rev 168418)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-05-07 10:39:48 UTC (rev 168419)
@@ -702,7 +702,7 @@
         }
 
     private:
-        virtual void didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t matchIndex) override
+        virtual void didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t) override
         {
             if (!m_client.didFindString)
                 return;

Modified: trunk/Source/WebKit2/UIProcess/WebFindClient.cpp (168418 => 168419)


--- trunk/Source/WebKit2/UIProcess/WebFindClient.cpp	2014-05-07 10:20:14 UTC (rev 168418)
+++ trunk/Source/WebKit2/UIProcess/WebFindClient.cpp	2014-05-07 10:39:48 UTC (rev 168419)
@@ -30,7 +30,7 @@
 
 namespace WebKit {
 
-void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t matchIndex)
+void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t)
 {
     if (!m_client.didFindString)
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to