Title: [160101] trunk/Source/WebKit2
Revision
160101
Author
[email protected]
Date
2013-12-04 10:35:41 -0800 (Wed, 04 Dec 2013)

Log Message

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

Patch by Tamas Gergely <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (160100 => 160101)


--- trunk/Source/WebKit2/ChangeLog	2013-12-04 18:30:49 UTC (rev 160100)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-04 18:35:41 UTC (rev 160101)
@@ -1,3 +1,17 @@
+2013-12-04  Tamas Gergely  <[email protected]>
+
+        Fix build warnings in DownloadAuthenticationClient.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=124920
+
+        Reviewed by Alexey Proskuryakov.
+
+        Fix unused parameter warnings in DownloadAuthenticationClient.cpp
+
+        * Shared/Downloads/DownloadAuthenticationClient.cpp:
+        (WebKit::DownloadAuthenticationClient::receivedCredential):
+        (WebKit::DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential):
+        (WebKit::DownloadAuthenticationClient::receivedCancellation):
+
 2013-12-03  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Push Remote Inspector debugging connection management into _javascript_Core

Modified: trunk/Source/WebKit2/Shared/Downloads/DownloadAuthenticationClient.cpp (160100 => 160101)


--- trunk/Source/WebKit2/Shared/Downloads/DownloadAuthenticationClient.cpp	2013-12-04 18:30:49 UTC (rev 160100)
+++ trunk/Source/WebKit2/Shared/Downloads/DownloadAuthenticationClient.cpp	2013-12-04 18:35:41 UTC (rev 160101)
@@ -38,17 +38,17 @@
     ASSERT_ARG(download, download);
 }
 
-void DownloadAuthenticationClient::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential)
+void DownloadAuthenticationClient::receivedCredential(const AuthenticationChallenge&, const Credential&)
 {
     // FIXME (119667): This can probably be just removed.
 }
 
-void DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& challenge)
+void DownloadAuthenticationClient::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&)
 {
     // FIXME (119667): This can probably be just removed.
 }
 
-void DownloadAuthenticationClient::receivedCancellation(const AuthenticationChallenge& challenge)
+void DownloadAuthenticationClient::receivedCancellation(const AuthenticationChallenge&)
 {
     // FIXME (119667): This can probably be just removed.
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to