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

Unified Diff: tools/perf/benchmarks/indexeddb_perf.py

Issue 809393002: Added support for improvement_direction to relevant values, which is propogated to chartjson. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/benchmarks/indexeddb_perf.py
diff --git a/tools/perf/benchmarks/indexeddb_perf.py b/tools/perf/benchmarks/indexeddb_perf.py
index d6344df9204d781117f5c84989642f04bc1d21d9..1df6ec5ad88b7cdee19926b71234af5363092079 100644
--- a/tools/perf/benchmarks/indexeddb_perf.py
+++ b/tools/perf/benchmarks/indexeddb_perf.py
@@ -79,11 +79,13 @@ class _IndexedDbMeasurement(page_test.PageTest):
continue
msec = float(result_dict[key])
results.AddValue(scalar.ScalarValue(
- results.current_page, key, 'ms', msec, important=False))
+ results.current_page, key, 'ms', msec, important=False,
+ higher_is_better=False))
total += msec
results.AddValue(scalar.ScalarValue(
- results.current_page, 'Total Perf', 'ms', total))
+ results.current_page, 'Total Perf', 'ms', total,
+ higher_is_better=False))
def CustomizeBrowserOptions(self, options):

Powered by Google App Engine
This is Rietveld 408576698