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

Side by Side Diff: tools/perf/page_sets/page_reload_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 unified diff | Download patch
« no previous file with comments | « tools/perf/page_sets/oortonline.py ('k') | tools/perf/page_sets/partial_invalidation_cases.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 from telemetry.page import shared_page_state 4 from telemetry.page import shared_page_state
5 from telemetry import story 5 from telemetry import story
6 6
7 from page_sets import top_pages 7 from page_sets import top_pages
8 8
9 9
10 def _Reload(action_runner): 10 def _Reload(action_runner):
(...skipping 15 matching lines...) Expand all
26 return DerivedSmoothPage 26 return DerivedSmoothPage
27 27
28 28
29 class PageReloadCasesPageSet(story.StorySet): 29 class PageReloadCasesPageSet(story.StorySet):
30 30
31 """ Pages for testing GC efficiency on page reload. """ 31 """ Pages for testing GC efficiency on page reload. """
32 32
33 def __init__(self): 33 def __init__(self):
34 super(PageReloadCasesPageSet, self).__init__( 34 super(PageReloadCasesPageSet, self).__init__(
35 archive_data_file='data/top_25.json', 35 archive_data_file='data/top_25.json',
36 cloud_storage_bucket=story.PARTNER_BUCKET, 36 cloud_storage_bucket=story.PARTNER_BUCKET)
37 verify_names=True)
38 37
39 shared_desktop_state = shared_page_state.SharedDesktopPageState 38 shared_desktop_state = shared_page_state.SharedDesktopPageState
40 39
41 self.AddStory(_CreatePageClassWithReload( 40 self.AddStory(_CreatePageClassWithReload(
42 top_pages.GoogleWebSearchPage)(self, shared_desktop_state)) 41 top_pages.GoogleWebSearchPage)(self, shared_desktop_state))
43 self.AddStory(_CreatePageClassWithReload( 42 self.AddStory(_CreatePageClassWithReload(
44 top_pages.GoogleDocPage)(self, shared_desktop_state)) 43 top_pages.GoogleDocPage)(self, shared_desktop_state))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/oortonline.py ('k') | tools/perf/page_sets/partial_invalidation_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698