Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: tools/telemetry/experimental/measure_trace.py

Issue 1111103002: [Telemetry] Move telemetry/examples to telemetry/experimental. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove not useful files Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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:]))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698