Title: [148739] trunk/Source/WebKit/blackberry
Revision
148739
Author
[email protected]
Date
2013-04-19 04:47:41 -0700 (Fri, 19 Apr 2013)

Log Message

fixed debug broken from previous patch
https://bugs.webkit.org/show_bug.cgi?id=114844

Patch by Xuefei Ren <[email protected]> on 2013-04-19
Reviewed by Rob Buis.

* WebKitSupport/RenderQueue.cpp:
(BlackBerry::WebKit::RenderQueue::scrollZoomJobsCompleted):

Add the parameter outstandingJobs which is used in ASSERT(),it was
removed in the r148677 by misstake.now I need to fix it.

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (148738 => 148739)


--- trunk/Source/WebKit/blackberry/ChangeLog	2013-04-19 11:30:05 UTC (rev 148738)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2013-04-19 11:47:41 UTC (rev 148739)
@@ -1,3 +1,16 @@
+2013-04-19  Xuefei Ren  <[email protected]>
+
+        fixed debug broken from previous patch 
+        https://bugs.webkit.org/show_bug.cgi?id=114844
+
+        Reviewed by Rob Buis.
+
+        * WebKitSupport/RenderQueue.cpp:
+        (BlackBerry::WebKit::RenderQueue::scrollZoomJobsCompleted):
+
+        Add the parameter outstandingJobs which is used in ASSERT(),it was
+        removed in the r148677 by misstake.now I need to fix it.
+
 2013-04-19  Alberto Garcia  <[email protected]>
 
         [BlackBerry] EditorClientBlackBerry: Fix parameter name

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/RenderQueue.cpp (148738 => 148739)


--- trunk/Source/WebKit/blackberry/WebKitSupport/RenderQueue.cpp	2013-04-19 11:30:05 UTC (rev 148738)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/RenderQueue.cpp	2013-04-19 11:47:41 UTC (rev 148739)
@@ -879,7 +879,7 @@
         scrollZoomJobsCompleted(*outstandingJobs, completedJobs, shouldBlitWhenCompleted);
 }
 
-void RenderQueue::scrollZoomJobsCompleted(const TileIndexList&, TileIndexList* completedJobs, bool shouldBlit)
+void RenderQueue::scrollZoomJobsCompleted(const TileIndexList& outstandingJobs, TileIndexList* completedJobs, bool shouldBlit)
 {
     // Get rid of the completed list!
     ASSERT(outstandingJobs.isEmpty());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to