| Index: tools/perf/measurements/oilpan_gc_times.py
 | 
| diff --git a/tools/perf/measurements/oilpan_gc_times.py b/tools/perf/measurements/oilpan_gc_times.py
 | 
| index ea753333751180889151a853267c18de625e66f6..8bdaf93ba47820bcb32cc2b2355a0ebb13a31fed 100644
 | 
| --- a/tools/perf/measurements/oilpan_gc_times.py
 | 
| +++ b/tools/perf/measurements/oilpan_gc_times.py
 | 
| @@ -72,7 +72,7 @@ def _AddTracingResults(thread, results):
 | 
|      if event.name == 'ThreadHeap::coalesce':
 | 
|        values['oilpan_coalesce'].append(duration)
 | 
|        continue
 | 
| -    if event.name == 'Heap::collectGarbage':
 | 
| +    if event.name == 'BlinkGCMarking':
 | 
|        if reason is not None:
 | 
|          values['oilpan_%s_mark' % reason].append(mark_time)
 | 
|          values['oilpan_%s_lazy_sweep' % reason].append(lazy_sweep_time)
 | 
| 
 |