Title: [88939] trunk/Source/WebCore
Revision
88939
Author
[email protected]
Date
2011-06-15 08:42:06 -0700 (Wed, 15 Jun 2011)

Log Message

2011-06-15  Andrey Kosyakov  <[email protected]>

        Unreviewed build fix: comment unused parameter names.

        * loader/ThreadableLoaderClient.h:
        (WebCore::ThreadableLoaderClient::didReceiveResponse):
        (WebCore::ThreadableLoaderClient::didReceiveAuthenticationCancellation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88938 => 88939)


--- trunk/Source/WebCore/ChangeLog	2011-06-15 15:23:26 UTC (rev 88938)
+++ trunk/Source/WebCore/ChangeLog	2011-06-15 15:42:06 UTC (rev 88939)
@@ -1,3 +1,11 @@
+2011-06-15  Andrey Kosyakov  <[email protected]>
+
+        Unreviewed build fix: comment unused parameter names.
+
+        * loader/ThreadableLoaderClient.h:
+        (WebCore::ThreadableLoaderClient::didReceiveResponse):
+        (WebCore::ThreadableLoaderClient::didReceiveAuthenticationCancellation):
+
 2011-06-15  Vsevolod Vlasov  <[email protected]>
 
         Reviewed by Pavel Feldman.

Modified: trunk/Source/WebCore/loader/ThreadableLoaderClient.h (88938 => 88939)


--- trunk/Source/WebCore/loader/ThreadableLoaderClient.h	2011-06-15 15:23:26 UTC (rev 88938)
+++ trunk/Source/WebCore/loader/ThreadableLoaderClient.h	2011-06-15 15:42:06 UTC (rev 88939)
@@ -42,14 +42,14 @@
     public:
         virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) { }
 
-        virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&) { }
+        virtual void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&) { }
         virtual void didReceiveData(const char*, int /*dataLength*/) { }
         virtual void didReceiveCachedMetadata(const char*, int /*dataLength*/) { }
         virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/) { }
         virtual void didFail(const ResourceError&) { }
         virtual void didFailRedirectCheck() { }
 
-        virtual void didReceiveAuthenticationCancellation(unsigned long identifier, const ResourceResponse&) { }
+        virtual void didReceiveAuthenticationCancellation(unsigned long /*identifier*/, const ResourceResponse&) { }
 
         virtual bool isDocumentThreadableLoaderClient() { return false; }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to