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

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

Issue 799183002: Rename AddPage -> AddUserStory in tools/perf/page_sets/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 4
5 from telemetry.page import page_set 5 from telemetry.page import page_set
6 from telemetry.page import page 6 from telemetry.page import page
7 7
8 8
9 TOP_2013_URLS = [ 9 TOP_2013_URLS = [
10 'http://www.facebook.com/barackobama', 10 'http://www.facebook.com/barackobama',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 """ Pages hand-picked from top-lists in Q32012. """ 266 """ Pages hand-picked from top-lists in Q32012. """
267 267
268 def __init__(self): 268 def __init__(self):
269 super(Top2012Q3PageSet, self).__init__( 269 super(Top2012Q3PageSet, self).__init__(
270 make_javascript_deterministic=True, 270 make_javascript_deterministic=True,
271 archive_data_file='data/2012Q3.json', 271 archive_data_file='data/2012Q3.json',
272 bucket=page_set.PARTNER_BUCKET) 272 bucket=page_set.PARTNER_BUCKET)
273 273
274 274
275 for url in TOP_2013_URLS: 275 for url in TOP_2013_URLS:
276 self.AddPage(Top2012Q3Page(url, self)) 276 self.AddUserStory(Top2012Q3Page(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/top_7_stress.py ('k') | tools/perf/page_sets/top_desktop_sites_2012Q3_stress.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698