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

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

Issue 958043002: pathological_mobile_sites WPR file re-recorded and moved to partner bucket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/data/pathological_mobile_sites_000.wpr.sha1 ('k') | no next file » | 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 page as page_module 4 from telemetry.page import page as page_module
5 from telemetry.page import page_set as page_set_module 5 from telemetry.page import page_set as page_set_module
6 6
7 7
8 class PathologicalMobileSitesPage(page_module.Page): 8 class PathologicalMobileSitesPage(page_module.Page):
9 9
10 def __init__(self, url, page_set): 10 def __init__(self, url, page_set):
(...skipping 10 matching lines...) Expand all
21 21
22 22
23 class PathologicalMobileSitesPageSet(page_set_module.PageSet): 23 class PathologicalMobileSitesPageSet(page_set_module.PageSet):
24 24
25 """Pathologically bad and janky sites on mobile.""" 25 """Pathologically bad and janky sites on mobile."""
26 26
27 def __init__(self): 27 def __init__(self):
28 super(PathologicalMobileSitesPageSet, self).__init__( 28 super(PathologicalMobileSitesPageSet, self).__init__(
29 user_agent_type='mobile', 29 user_agent_type='mobile',
30 archive_data_file='data/pathological_mobile_sites.json', 30 archive_data_file='data/pathological_mobile_sites.json',
31 bucket=page_set_module.INTERNAL_BUCKET) 31 bucket=page_set_module.PARTNER_BUCKET)
32 32
33 sites = ['http://edition.cnn.com', 33 sites = ['http://edition.cnn.com',
34 'http://m.espn.go.com/nhl/rankings', 34 'http://m.espn.go.com/nhl/rankings',
35 'http://recode.net', 35 'http://recode.net',
36 'http://www.latimes.com', 36 'http://www.latimes.com',
37 ('http://www.pbs.org/newshour/bb/' 37 ('http://www.pbs.org/newshour/bb/'
38 'much-really-cost-live-city-like-seattle/#the-rundown'), 38 'much-really-cost-live-city-like-seattle/#the-rundown'),
39 'http://www.zdnet.com'] 39 'http://www.zdnet.com']
40 40
41 for site in sites: 41 for site in sites:
42 self.AddUserStory(PathologicalMobileSitesPage(site, self)) 42 self.AddUserStory(PathologicalMobileSitesPage(site, self))
43 43
OLDNEW
« no previous file with comments | « tools/perf/page_sets/data/pathological_mobile_sites_000.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698