Title: [167346] trunk/Source/WebKit/efl
Revision
167346
Author
commit-qu...@webkit.org
Date
2014-04-16 05:25:39 -0700 (Wed, 16 Apr 2014)

Log Message

[EFL] Cleanup the build from unused parameters in WebKit-efl.
https://bugs.webkit.org/show_bug.cgi?id=131677.

Patch by Jeongeun Kim <je_julie....@samsung.com> on 2014-04-16
Reviewed by Gyuyoung Kim.

Changed ASSERT to ASSERT_UNUSED if it's just used for ASSERT.

* ewk/ewk_view.cpp:
(ewk_view_scroll):

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (167345 => 167346)


--- trunk/Source/WebKit/efl/ChangeLog	2014-04-16 11:26:55 UTC (rev 167345)
+++ trunk/Source/WebKit/efl/ChangeLog	2014-04-16 12:25:39 UTC (rev 167346)
@@ -1,3 +1,15 @@
+2014-04-16  Jeongeun Kim  <je_julie....@samsung.com>
+
+        [EFL] Cleanup the build from unused parameters in WebKit-efl.
+        https://bugs.webkit.org/show_bug.cgi?id=131677.
+
+        Reviewed by Gyuyoung Kim.
+
+        Changed ASSERT to ASSERT_UNUSED if it's just used for ASSERT.
+
+        * ewk/ewk_view.cpp:
+        (ewk_view_scroll):
+
 2014-04-15  Hyowon Kim  <hw1008....@samsung.com>
 
         [EFL] Fix problems with the pixel dump.

Modified: trunk/Source/WebKit/efl/ewk/ewk_view.cpp (167345 => 167346)


--- trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2014-04-16 11:26:55 UTC (rev 167345)
+++ trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2014-04-16 12:25:39 UTC (rev 167346)
@@ -3520,8 +3520,8 @@
 
 void ewk_view_scroll(Evas_Object* ewkView, const WebCore::IntSize& delta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect&)
 {
-    ASSERT(!rectToScroll.isEmpty());
-    ASSERT(delta.width() || delta.height());
+    ASSERT_UNUSED(rectToScroll, !rectToScroll.isEmpty());
+    ASSERT_UNUSED(delta, delta.width() || delta.height());
 
     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
     EWK_VIEW_PRIV_GET_OR_RETURN(smartData, priv);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to