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

Unified Diff: tools/perf/page_sets/system_health/system_health_stories.py

Issue 2941663002: Removing verify_names=True now that the default for verify_names is True (Closed)
Patch Set: 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/startup_pages.py ('k') | tools/perf/page_sets/top_10.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/system_health/system_health_stories.py
diff --git a/tools/perf/page_sets/system_health/system_health_stories.py b/tools/perf/page_sets/system_health/system_health_stories.py
index 63e90e4f539ac37944e7c3ae1507f2c2a23cec05..578d7fb3f29685759f287733ca7bec98271da053 100644
--- a/tools/perf/page_sets/system_health/system_health_stories.py
+++ b/tools/perf/page_sets/system_health/system_health_stories.py
@@ -20,8 +20,7 @@ class SystemHealthStorySet(story.StorySet):
def __init__(self, platform, case=None, take_memory_measurement=False):
super(SystemHealthStorySet, self).__init__(
archive_data_file=('../data/system_health_%s.json' % platform),
- cloud_storage_bucket=story.PARTNER_BUCKET,
- verify_names=True)
+ cloud_storage_bucket=story.PARTNER_BUCKET)
assert platform in platforms.ALL_PLATFORMS
@@ -35,7 +34,7 @@ class SystemHealthStorySet(story.StorySet):
class SystemHealthBlankStorySet(story.StorySet):
"""A story set containing the chrome:blank story only."""
- def __init__(self, take_memory_measurement=False, verify_names=True):
+ def __init__(self, take_memory_measurement=False):
super(SystemHealthBlankStorySet, self).__init__()
self.AddStory(
chrome_stories.BlankAboutBlankStory(self, take_memory_measurement))
« no previous file with comments | « tools/perf/page_sets/startup_pages.py ('k') | tools/perf/page_sets/top_10.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698