Title: [170643] trunk/Source/WebKit2
Revision
170643
Author
commit-qu...@webkit.org
Date
2014-07-01 09:59:00 -0700 (Tue, 01 Jul 2014)

Log Message

Clean up the WebKit build from unused parameter warning in Webkit2/UIProcess module
https://bugs.webkit.org/show_bug.cgi?id=134294

Patch by Rohit Kumar <kumar.ro...@samsung.com> on 2014-07-01
Reviewed by Darin Adler.

* UIProcess/API/APIUIClient.h:
(API::UIClient::reachedApplicationCacheOriginQuota):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (170642 => 170643)


--- trunk/Source/WebKit2/ChangeLog	2014-07-01 16:45:03 UTC (rev 170642)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-01 16:59:00 UTC (rev 170643)
@@ -1,3 +1,13 @@
+2014-07-01  Rohit Kumar  <kumar.ro...@samsung.com>
+
+        Clean up the WebKit build from unused parameter warning in Webkit2/UIProcess module
+        https://bugs.webkit.org/show_bug.cgi?id=134294
+
+        Reviewed by Darin Adler.
+
+        * UIProcess/API/APIUIClient.h:
+        (API::UIClient::reachedApplicationCacheOriginQuota):
+
 2014-07-01  Brady Eidson  <beid...@apple.com>
 
         Build fix.

Modified: trunk/Source/WebKit2/UIProcess/API/APIUIClient.h (170642 => 170643)


--- trunk/Source/WebKit2/UIProcess/API/APIUIClient.h	2014-07-01 16:45:03 UTC (rev 170642)
+++ trunk/Source/WebKit2/UIProcess/API/APIUIClient.h	2014-07-01 16:59:00 UTC (rev 170643)
@@ -115,7 +115,7 @@
         completionHandler(currentQuota);
     }
 
-    virtual void reachedApplicationCacheOriginQuota(WebKit::WebPageProxy*, const WebCore::SecurityOrigin&, uint64_t currentQuota, uint64_t totalBytesNeeded, std::function<void (unsigned long long)> completionHandler)
+    virtual void reachedApplicationCacheOriginQuota(WebKit::WebPageProxy*, const WebCore::SecurityOrigin&, uint64_t currentQuota, uint64_t, std::function<void (unsigned long long)> completionHandler)
     {
         completionHandler(currentQuota);
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to