| Index: tools/perf/measurements/dromaeo.py
|
| ===================================================================
|
| --- tools/perf/measurements/dromaeo.py (revision 217866)
|
| +++ tools/perf/measurements/dromaeo.py (working copy)
|
| @@ -4,6 +4,7 @@
|
|
|
| from telemetry.core import util
|
| from telemetry.page import page_measurement
|
| +from telemetry.page import result_data_type
|
|
|
| class Dromaeo(page_measurement.PageMeasurement):
|
| def MeasurePage(self, page, tab, results):
|
| @@ -24,7 +25,7 @@
|
|
|
| suffix = page.url[page.url.index('?') + 1 : page.url.index('&')]
|
| for k, v in score.iteritems():
|
| - data_type = 'unimportant'
|
| + data_type = result_data_type.UNIMPORTANT
|
| if k == suffix:
|
| - data_type = 'default'
|
| + data_type = result_data_type.DEFAULT
|
| results.Add(Escape(k), 'runs/s', v, data_type=data_type)
|
|
|