Stores the step stats analysis output. Parameters: chrome_trace: A dict containing the chrome trace analysis. allocator_maximums: A dict mapping allocator names to AllocationMaximum.
| 42 | |
| 43 | |
| 44 | class StepStatsAnalysis(collections.namedtuple( |
| 45 | 'StepStatsAnalysis', ('chrome_trace', 'allocator_maximums'))): |
| 46 | """Stores the step stats analysis output. |
| 47 | |
| 48 | Parameters: |
| 49 | chrome_trace: A dict containing the chrome trace analysis. |
| 50 | allocator_maximums: A dict mapping allocator names to AllocationMaximum. |
| 51 | """ |
| 52 | pass |
| 53 | |
| 54 | |
| 55 | class _ChromeTraceFormatter(object): |