Index: cc/trees/layer_tree_host_impl.cc |
diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc |
index 66ee020caf36ba09d39354709858d41e9162f4a4..7520d4cefe37c5fe49290a8c051851dec5e5c470 100644 |
--- a/cc/trees/layer_tree_host_impl.cc |
+++ b/cc/trees/layer_tree_host_impl.cc |
@@ -1234,11 +1234,12 @@ void LayerTreeHostImpl::GetPictureLayerImplPairs( |
} |
void LayerTreeHostImpl::BuildRasterQueue(RasterTilePriorityQueue* queue, |
- TreePriority tree_priority) { |
+ TreePriority tree_priority, |
+ RasterTilePriorityQueue::Type type) { |
TRACE_EVENT0("cc", "LayerTreeHostImpl::BuildRasterQueue"); |
picture_layer_pairs_.clear(); |
GetPictureLayerImplPairs(&picture_layer_pairs_, true); |
- queue->Build(picture_layer_pairs_, tree_priority); |
+ queue->Build(picture_layer_pairs_, tree_priority, type); |
if (!queue->IsEmpty()) { |
// Only checking the Top() tile here isn't a definite answer that there is |