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

Side by Side Diff: tools/telemetry/telemetry/page/block_page_benchmark_results.py

Issue 12278015: [Telemetry] Reorganize everything. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-add shebangs. Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 import os 4 import os
5 5
6 from telemetry.page_benchmark_results import PageBenchmarkResults 6 from telemetry.page import page_benchmark_results
7 7
8 class BlockPageBenchmarkResults(PageBenchmarkResults): 8 class BlockPageBenchmarkResults(page_benchmark_results.PageBenchmarkResults):
9 def __init__(self, output_file): 9 def __init__(self, output_file):
10 super(BlockPageBenchmarkResults, self).__init__() 10 super(BlockPageBenchmarkResults, self).__init__()
11 self._output_file = output_file 11 self._output_file = output_file
12 12
13 def DidMeasurePage(self): 13 def DidMeasurePage(self):
14 page_values = self.values_for_current_page 14 page_values = self.values_for_current_page
15 15
16 lines = ['url: %s' % 16 lines = ['url: %s' %
17 self.values_for_current_page.page.url] 17 self.values_for_current_page.page.url]
18 sorted_measurement_names = page_values.measurement_names 18 sorted_measurement_names = page_values.measurement_names
19 sorted_measurement_names.sort() 19 sorted_measurement_names.sort()
20 20
21 for measurement_name in sorted_measurement_names: 21 for measurement_name in sorted_measurement_names:
22 value = page_values.FindValueByMeasurementName(measurement_name) 22 value = page_values.FindValueByMeasurementName(measurement_name)
23 lines.append('%s (%s): %s' % 23 lines.append('%s (%s): %s' %
24 (measurement_name, 24 (measurement_name,
25 value.units, 25 value.units,
26 value.output_value)) 26 value.output_value))
27 for line in lines: 27 for line in lines:
28 self._output_file.write(line) 28 self._output_file.write(line)
29 self._output_file.write(os.linesep) 29 self._output_file.write(os.linesep)
30 self._output_file.write(os.linesep) 30 self._output_file.write(os.linesep)
31 31
32 super(BlockPageBenchmarkResults, self).DidMeasurePage() 32 super(BlockPageBenchmarkResults, self).DidMeasurePage()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698