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

Side by Side Diff: tools/perf/contrib/cluster_telemetry/page_set.py

Issue 2876073003: Migrate cluster telemetry benchmarks to tools/perf/contrib/cluster_telemetry/ (Closed)
Patch Set: Remove BENCHMARKS_BLACK_LIST Created 3 years, 7 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
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 4
5 5
6 from telemetry.page import traffic_setting as traffic_setting_module 6 from telemetry.page import traffic_setting as traffic_setting_module
7 from telemetry.page import page as page_module 7 from telemetry.page import page as page_module
8 from telemetry.page import shared_page_state 8 from telemetry.page import shared_page_state
9 from telemetry import story 9 from telemetry import story
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 raise ValueError('user_agent %s is unrecognized' % user_agent) 43 raise ValueError('user_agent %s is unrecognized' % user_agent)
44 44
45 super(CTPageSet, self).__init__(archive_data_file=archive_data_file) 45 super(CTPageSet, self).__init__(archive_data_file=archive_data_file)
46 46
47 for url in urls_list.split(','): 47 for url in urls_list.split(','):
48 self.AddStory( 48 self.AddStory(
49 CTPage(url, self, shared_page_state_class=shared_page_state_class, 49 CTPage(url, self, shared_page_state_class=shared_page_state_class,
50 archive_data_file=archive_data_file, 50 archive_data_file=archive_data_file,
51 traffic_setting=traffic_setting, 51 traffic_setting=traffic_setting,
52 run_page_interaction_callback=run_page_interaction_callback)) 52 run_page_interaction_callback=run_page_interaction_callback))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698