Title: [180630] trunk/Source/WebKit2
Revision
180630
Author
shiva...@samsung.com
Date
2015-02-25 09:43:40 -0800 (Wed, 25 Feb 2015)

Log Message

Fix build warning in WebKit2/UIProcess module.
https://bugs.webkit.org/show_bug.cgi?id=142014

Reviewed by Anders Carlsson.

Fix build warning by using UNUSED_PARAM macro.

* UIProcess/WebsiteData/WebsiteDataStore.cpp:
(WebKit::computeWebProcessAccessTypeForDataFetch):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (180629 => 180630)


--- trunk/Source/WebKit2/ChangeLog	2015-02-25 17:35:39 UTC (rev 180629)
+++ trunk/Source/WebKit2/ChangeLog	2015-02-25 17:43:40 UTC (rev 180630)
@@ -1,3 +1,15 @@
+2015-02-25  Shivakumar JM  <shiva...@samsung.com>
+
+        Fix build warning in WebKit2/UIProcess module.
+        https://bugs.webkit.org/show_bug.cgi?id=142014
+
+        Reviewed by Anders Carlsson.
+
+        Fix build warning by using UNUSED_PARAM macro.
+
+        * UIProcess/WebsiteData/WebsiteDataStore.cpp:
+        (WebKit::computeWebProcessAccessTypeForDataFetch):
+
 2015-02-24  Simon Fraser  <simon.fra...@apple.com>
 
         Clarify some resizing terminology in ScrollView/FrameView

Modified: trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp (180629 => 180630)


--- trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp	2015-02-25 17:35:39 UTC (rev 180629)
+++ trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp	2015-02-25 17:43:40 UTC (rev 180630)
@@ -102,6 +102,8 @@
 
 static ProcessAccessType computeWebProcessAccessTypeForDataFetch(WebsiteDataTypes dataTypes, bool isNonPersistentStore)
 {
+    UNUSED_PARAM(isNonPersistentStore);
+
     ProcessAccessType processAccessType = ProcessAccessType::None;
 
     if (dataTypes & WebsiteDataTypeMemoryCache)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to