| Index: content/browser/renderer_host/render_widget_host_latency_tracker.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_latency_tracker.cc b/content/browser/renderer_host/render_widget_host_latency_tracker.cc
|
| index 8de5512d247122dcc7b88e5dff69249b04f040dc..42194940402b2419d196ad6024cbf3bb20a1fccf 100644
|
| --- a/content/browser/renderer_host/render_widget_host_latency_tracker.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_latency_tracker.cc
|
| @@ -259,8 +259,7 @@ void AddLatencyInfoComponentIds(LatencyInfo* latency,
|
| auto lc = latency->latency_components.begin();
|
| while (lc != latency->latency_components.end()) {
|
| ui::LatencyComponentType component_type = lc->first.first;
|
| - if (component_type == ui::WINDOW_SNAPSHOT_FRAME_NUMBER_COMPONENT ||
|
| - component_type == ui::WINDOW_OLD_SNAPSHOT_FRAME_NUMBER_COMPONENT) {
|
| + if (component_type == ui::WINDOW_SNAPSHOT_FRAME_NUMBER_COMPONENT) {
|
| // Generate a new component entry with the correct component ID
|
| auto key = std::make_pair(component_type, latency_component_id);
|
| new_components[key] = lc->second;
|
|
|