Changeset 168419 in webkit


Ignore:
Timestamp:
May 7, 2014 3:39:48 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Shivakumar JM <shiva.jm@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):

Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r168416 r168419  
     12014-05-07  Shivakumar JM  <shiva.jm@samsung.com>
     2
     3        Cleanup the build from unused parameter in UIProcess Module
     4        https://bugs.webkit.org/show_bug.cgi?id=131969
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Fixed unused parameter by omitting the parameter name
     9
     10        * UIProcess/API/C/WKPage.cpp:
     11        (WKPageSetPageFindClient):
     12        * UIProcess/WebFindClient.cpp:
     13        (WebKit::WebFindClient::didFindString):
     14
    1152014-05-07  Manuel Rego Casasnovas  <rego@igalia.com>
    216
  • trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp

    r168411 r168419  
    703703
    704704    private:
    705         virtual void didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t matchIndex) override
     705        virtual void didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t) override
    706706        {
    707707            if (!m_client.didFindString)
  • trunk/Source/WebKit2/UIProcess/WebFindClient.cpp

    r167519 r168419  
    3131namespace WebKit {
    3232
    33 void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t matchIndex)
     33void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t)
    3434{
    3535    if (!m_client.didFindString)
Note: See TracChangeset for help on using the changeset viewer.