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

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

Issue 2921333002: Explictly setting story names for rasterize_and_record_micro story sets (Closed)
Patch Set: Explictly setting story names for rasterize_and_record_micro story sets 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/polymer.py ('k') | tools/perf/page_sets/top_pages.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/top_25_pages.py
diff --git a/tools/perf/page_sets/top_25_pages.py b/tools/perf/page_sets/top_25_pages.py
index fbbc609fb584c0dfdc3ffc12ce0d4f89c9df9897..670aaa399b900fbcebf2550faacda0d7718783b9 100644
--- a/tools/perf/page_sets/top_25_pages.py
+++ b/tools/perf/page_sets/top_25_pages.py
@@ -15,7 +15,8 @@ class Top25PageSet(story.StorySet):
def __init__(self):
super(Top25PageSet, self).__init__(
archive_data_file='data/top_25.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
shared_desktop_state = shared_page_state.SharedDesktopPageState
self.AddStory(top_pages.GoogleWebSearchPage(self, shared_desktop_state))
@@ -60,4 +61,5 @@ class Top25PageSet(story.StorySet):
for url in other_urls:
self.AddStory(
- page.Page(url, self, shared_page_state_class=shared_desktop_state))
+ page.Page(url, self, shared_page_state_class=shared_desktop_state,
+ name=url))
« no previous file with comments | « tools/perf/page_sets/polymer.py ('k') | tools/perf/page_sets/top_pages.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698