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

Unified Diff: tools/perf/page_sets/maps.py

Issue 2926633002: Explicitly setting story names for all smoothness benchmarks (Closed)
Patch Set: Explicitly setting story names for all smoothness benchmarks Created 3 years, 6 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/page_sets/maps.py
diff --git a/tools/perf/page_sets/maps.py b/tools/perf/page_sets/maps.py
index 9cd18978ee9e3e277acbd54097eac94072e74cee..5303c30f58d0dc8e636cf8b45bb67805ee7d36ab 100644
--- a/tools/perf/page_sets/maps.py
+++ b/tools/perf/page_sets/maps.py
@@ -15,7 +15,8 @@ class MapsPage(page_module.Page):
url='http://localhost:8000/performance.html',
page_set=page_set,
shared_page_state_class=(
- webgl_supported_shared_state.WebGLSupportedSharedState))
+ webgl_supported_shared_state.WebGLSupportedSharedState),
+ name='http://localhost:8000/performance.html')
cblume 2017/06/06 20:10:58 I am bad at python but is there a way to have both
ashleymarie1 2017/06/06 20:35:00 Done.
self.archive_data_file = 'data/maps.json'
@property
@@ -40,6 +41,7 @@ class MapsPageSet(story.StorySet):
def __init__(self):
super(MapsPageSet, self).__init__(
archive_data_file='data/maps.json',
- cloud_storage_bucket=story.PUBLIC_BUCKET)
+ cloud_storage_bucket=story.PUBLIC_BUCKET,
+ verify_names=True)
self.AddStory(MapsPage(self))

Powered by Google App Engine
This is Rietveld 408576698