Changeset 160101 in webkit


Ignore:
Timestamp:
Dec 4, 2013 10:35:41 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Fix build warnings in DownloadAuthenticationClient.cpp
https://bugs.webkit.org/show_bug.cgi?id=124920

Patch by Tamas Gergely <tgergely.u-szeged@partner.samsung.com> on 2013-12-04
Reviewed by Alexey Proskuryakov.

Fix unused parameter warnings in DownloadAuthenticationClient.cpp

  • Shared/Downloads/DownloadAuthenticationClient.cpp:

(WebKit::DownloadAuthenticationClient::receivedCredential):
(WebKit::DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential):
(WebKit::DownloadAuthenticationClient::receivedCancellation):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160099 r160101  
     12013-12-04  Tamas Gergely  <tgergely.u-szeged@partner.samsung.com>
     2
     3        Fix build warnings in DownloadAuthenticationClient.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=124920
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Fix unused parameter warnings in DownloadAuthenticationClient.cpp
     9
     10        * Shared/Downloads/DownloadAuthenticationClient.cpp:
     11        (WebKit::DownloadAuthenticationClient::receivedCredential):
     12        (WebKit::DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential):
     13        (WebKit::DownloadAuthenticationClient::receivedCancellation):
     14
    1152013-12-03  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebKit2/Shared/Downloads/DownloadAuthenticationClient.cpp

    r159441 r160101  
    3939}
    4040
    41 void DownloadAuthenticationClient::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential)
     41void DownloadAuthenticationClient::receivedCredential(const AuthenticationChallenge&, const Credential&)
    4242{
    4343    // FIXME (119667): This can probably be just removed.
    4444}
    4545
    46 void DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& challenge)
     46void DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&)
    4747{
    4848    // FIXME (119667): This can probably be just removed.
    4949}
    5050
    51 void DownloadAuthenticationClient::receivedCancellation(const AuthenticationChallenge& challenge)
     51void DownloadAuthenticationClient::receivedCancellation(const AuthenticationChallenge&)
    5252{
    5353    // FIXME (119667): This can probably be just removed.
Note: See TracChangeset for help on using the changeset viewer.