diff --git a/flow/layers/container_layer.cc b/flow/layers/container_layer.cc index f48c96b60fa7b..62b4ffc8829bf 100644 --- a/flow/layers/container_layer.cc +++ b/flow/layers/container_layer.cc @@ -35,7 +35,8 @@ void ContainerLayer::PrerollChildren(PrerollContext* context, } void ContainerLayer::PaintChildren(PaintContext& context) const { - TRACE_EVENT0("flutter", "ContainerLayer::PaintChildren"); + // Intentionally not tracing here as there should be no self-time + // and the trace event on this common function has a small overhead. for (auto& layer : layers_) layer->Paint(context); }