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

Side by Side Diff: tools/perf/page_sets/top_25_smooth.py

Issue 2933173002: Deleting unused story sets (Closed)
Patch Set: Deleting unused 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 unified diff | Download patch
« no previous file with comments | « tools/perf/page_sets/top_10_mobile.py ('k') | tools/perf/page_sets/top_7_stress.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 page as page_module 4 from telemetry.page import page as page_module
5 from telemetry.page import shared_page_state 5 from telemetry.page import shared_page_state
6 from telemetry import story 6 from telemetry import story
7 7
8 from page_sets.login_helpers import google_login 8 from page_sets.login_helpers import google_login
9 from page_sets import top_pages 9 from page_sets import top_pages
10 10
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 # Why: #1 Alexa sports 168 # Why: #1 Alexa sports
169 'http://sports.yahoo.com/', 169 'http://sports.yahoo.com/',
170 ] 170 ]
171 171
172 if techcrunch: 172 if techcrunch:
173 # Why: top tech blog 173 # Why: top tech blog
174 other_urls.append('http://techcrunch.com') 174 other_urls.append('http://techcrunch.com')
175 175
176 for url in other_urls: 176 for url in other_urls:
177 self.AddStory(TopSmoothPage(url, self)) 177 self.AddStory(TopSmoothPage(url, self))
178
179
180 class V8Top25SmoothPageSet(Top25SmoothPageSet):
181 def __init__(self):
182 # Disabled for V8 because of crbug.com/507836, crbug.com/527425
183 super(V8Top25SmoothPageSet, self).__init__(techcrunch=False)
OLDNEW
« no previous file with comments | « tools/perf/page_sets/top_10_mobile.py ('k') | tools/perf/page_sets/top_7_stress.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698