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

Unified Diff: tools/perf/page_sets/infinite_scroll_cases.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/indexeddb_endure_page.py ('k') | tools/perf/page_sets/intl_ar_fa_he.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/infinite_scroll_cases.py
diff --git a/tools/perf/page_sets/infinite_scroll_cases.py b/tools/perf/page_sets/infinite_scroll_cases.py
index 1268f40860979bcd87f2147578efc6535ce11b9c..25221f0850cf82d3004812ab3df5d04d0571a000 100644
--- a/tools/perf/page_sets/infinite_scroll_cases.py
+++ b/tools/perf/page_sets/infinite_scroll_cases.py
@@ -134,8 +134,7 @@ class InfiniteScrollStorySet(story.StorySet):
def __init__(self):
super(InfiniteScrollStorySet, self).__init__(
archive_data_file='data/infinite_scroll.json',
- cloud_storage_bucket=story.PARTNER_BUCKET,
- verify_names=True)
+ cloud_storage_bucket=story.PARTNER_BUCKET)
for story_class in _FindInfiniteScrollStoryClasses(platforms.DESKTOP):
self.AddStory(story_class(self))
@@ -144,8 +143,7 @@ class MobileInfiniteScrollStorySet(story.StorySet):
def __init__(self):
super(MobileInfiniteScrollStorySet, self).__init__(
archive_data_file='data/mobile_infinite_scroll.json',
- cloud_storage_bucket=story.PARTNER_BUCKET,
- verify_names=True)
+ cloud_storage_bucket=story.PARTNER_BUCKET)
for story_class in _FindInfiniteScrollStoryClasses(platforms.MOBILE):
self.AddStory(story_class(self))
« no previous file with comments | « tools/perf/page_sets/indexeddb_endure_page.py ('k') | tools/perf/page_sets/intl_ar_fa_he.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698