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

Unified Diff: tools/perf/page_sets/startup_pages_record.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/page_sets/simple_mobile_sites_fling.py ('k') | tools/perf/page_sets/top_10.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/startup_pages_record.py
diff --git a/tools/perf/page_sets/startup_pages_record.py b/tools/perf/page_sets/startup_pages_record.py
deleted file mode 100644
index 10936c33d4b198d6eae2232e111869bc781ff52d..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/startup_pages_record.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-from telemetry.page import page as page_module
-from telemetry import story
-
-
-class StartupPagesRecordPage(page_module.Page):
-
- def __init__(self, url, page_set):
- super(StartupPagesRecordPage, self).__init__(url=url, page_set=page_set)
- self.archive_data_file = 'data/startup_pages.json'
-
-
-class StartupPagesRecordPageSet(story.StorySet):
-
- """ Pages to record data for testing starting Chrome with a URL.
- We can't use startup_pages.json with record_wpr, since record_wpr
- requires a default navigate step, which we don't want for startup
- testing; but we do want to record the pages it uses. Also, record_wpr
- fails on about:blank, which we want to include in startup testing.
- """
-
- def __init__(self):
- super(StartupPagesRecordPageSet, self).__init__(
- archive_data_file='data/startup_pages.json')
-
- urls_list = [
- # Why: typical page
- 'http://bbc.co.uk',
- # TODO(charliea): Reenable this when kabook.com is no longer crashing.
- # crbug.com/667470
- # Why: Horribly complex page - stress test!
- # 'http://kapook.com',
- ]
-
- for url in urls_list:
- self.AddStory(StartupPagesRecordPage(url, self))
« no previous file with comments | « tools/perf/page_sets/simple_mobile_sites_fling.py ('k') | tools/perf/page_sets/top_10.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698