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

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

Issue 816353008: [Telemetry] Explicitly define Name() method for all perf benchmarks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 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 e79c2ffcbb3d7d81c9fb76f1910639b1cf7590a3..031a92c6ab92cabc216fbcce56d4ac65ac02e6b8 100644
--- a/tools/perf/benchmarks/indexeddb_perf.py
+++ b/tools/perf/benchmarks/indexeddb_perf.py
@@ -96,6 +96,10 @@ class IndexedDb(benchmark.Benchmark):
"""Chromium's IndexedDB Performance tests."""
test = _IndexedDbMeasurement
+ @classmethod
+ def Name(cls):
+ return 'indexeddb_perf'
+
def CreatePageSet(self, options):
indexeddb_dir = os.path.join(util.GetChromiumSrcDir(), 'chrome', 'test',
'data', 'indexeddb')

Powered by Google App Engine
This is Rietveld 408576698