Index: cc/debug/debug_rect_history.cc |
diff --git a/cc/debug/debug_rect_history.cc b/cc/debug/debug_rect_history.cc |
index f89b9f777c6e7adee82b536f99bf73b20f8761d5..53381cfd207f4bdf16d101cf26056c11afbfe9c9 100644 |
--- a/cc/debug/debug_rect_history.cc |
+++ b/cc/debug/debug_rect_history.cc |
@@ -160,8 +160,7 @@ void DebugRectHistory::SaveScreenSpaceRects( |
void DebugRectHistory::SaveTouchEventHandlerRects(LayerTreeImpl* tree_impl) { |
LayerTreeHostCommon::CallFunctionForEveryLayer( |
tree_impl, |
- [this](LayerImpl* layer) { SaveTouchEventHandlerRectsCallback(layer); }, |
- CallFunctionLayerType::ALL_LAYERS); |
+ [this](LayerImpl* layer) { SaveTouchEventHandlerRectsCallback(layer); }); |
} |
void DebugRectHistory::SaveTouchEventHandlerRectsCallback(LayerImpl* layer) { |
@@ -200,8 +199,7 @@ void DebugRectHistory::SaveWheelEventHandlerRects(LayerImpl* root_layer) { |
void DebugRectHistory::SaveScrollEventHandlerRects(LayerTreeImpl* tree_impl) { |
LayerTreeHostCommon::CallFunctionForEveryLayer( |
tree_impl, |
- [this](LayerImpl* layer) { SaveScrollEventHandlerRectsCallback(layer); }, |
- CallFunctionLayerType::ALL_LAYERS); |
+ [this](LayerImpl* layer) { SaveScrollEventHandlerRectsCallback(layer); }); |
} |
void DebugRectHistory::SaveScrollEventHandlerRectsCallback(LayerImpl* layer) { |
@@ -217,8 +215,7 @@ void DebugRectHistory::SaveScrollEventHandlerRectsCallback(LayerImpl* layer) { |
void DebugRectHistory::SaveNonFastScrollableRects(LayerTreeImpl* tree_impl) { |
LayerTreeHostCommon::CallFunctionForEveryLayer( |
tree_impl, |
- [this](LayerImpl* layer) { SaveNonFastScrollableRectsCallback(layer); }, |
- CallFunctionLayerType::ALL_LAYERS); |
+ [this](LayerImpl* layer) { SaveNonFastScrollableRectsCallback(layer); }); |
} |
void DebugRectHistory::SaveNonFastScrollableRectsCallback(LayerImpl* layer) { |