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

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
« no previous file with comments | « tools/perf/page_sets/key_mobile_sites_smooth.py ('k') | tools/perf/page_sets/pathological_mobile_sites.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..cb112fb5d3703f48705fa1bf23d7b23b385f835a 100644
--- a/tools/perf/page_sets/maps.py
+++ b/tools/perf/page_sets/maps.py
@@ -11,11 +11,13 @@ from page_sets import webgl_supported_shared_state
class MapsPage(page_module.Page):
def __init__(self, page_set):
+ url = 'http://localhost:8000/performance.html'
super(MapsPage, self).__init__(
- url='http://localhost:8000/performance.html',
+ url=url,
page_set=page_set,
shared_page_state_class=(
- webgl_supported_shared_state.WebGLSupportedSharedState))
+ webgl_supported_shared_state.WebGLSupportedSharedState),
+ name=url)
self.archive_data_file = 'data/maps.json'
@property
@@ -40,6 +42,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))
« no previous file with comments | « tools/perf/page_sets/key_mobile_sites_smooth.py ('k') | tools/perf/page_sets/pathological_mobile_sites.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698