OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import collections | 6 import collections |
7 import json | 7 import json |
8 import os | 8 import os |
9 import sys | 9 import sys |
10 | 10 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 results.WillRunPage(page) | 77 results.WillRunPage(page) |
78 smoothness_metric.AddResults( | 78 smoothness_metric.AddResults( |
79 timeline_model, thread, records, results) | 79 timeline_model, thread, records, results) |
80 results.DidRunPage(page) | 80 results.DidRunPage(page) |
81 results.PrintSummary() | 81 results.PrintSummary() |
82 return 0 | 82 return 0 |
83 | 83 |
84 | 84 |
85 if __name__ == '__main__': | 85 if __name__ == '__main__': |
86 sys.exit(Main(sys.argv[1:])) | 86 sys.exit(Main(sys.argv[1:])) |
OLD | NEW |