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

Unified Diff: tools/perf/page_sets/typical_10_mobile.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/tough_layer_cases.py ('k') | tools/perf/page_sets/typical_25.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/typical_10_mobile.py
diff --git a/tools/perf/page_sets/typical_10_mobile.py b/tools/perf/page_sets/typical_10_mobile.py
index 968c20e27fc6a225fa9cdb3cb6b7cd4358bef333..53ffbcc6b523a8ef6f7050525659333c1437af79 100644
--- a/tools/perf/page_sets/typical_10_mobile.py
+++ b/tools/perf/page_sets/typical_10_mobile.py
@@ -20,18 +20,6 @@ class Typical10MobilePage(page_module.Page):
action_runner.ScrollPage()
action_runner.Wait(20)
-class Typical10MobileReloadPage(Typical10MobilePage):
-
- def __init__(self, url, page_set, name=''):
- super(Typical10MobileReloadPage, self).__init__(
- url=url, page_set=page_set, name=name,)
-
- def RunPageInteractions(self, action_runner):
- for _ in range(0, 5):
- action_runner.ReloadPage()
- action_runner.WaitForJavaScriptCondition(
- 'document.readyState === "complete"')
-
urls_list = [
# Why: Top site
@@ -68,14 +56,3 @@ class Typical10MobilePageSet(story.StorySet):
for url in urls_list:
self.AddStory(Typical10MobilePage(url, self, name=url))
-
-class Typical10MobileReloadPageSet(story.StorySet):
- """10 typical mobile pages, used for reloading power testing."""
-
- def __init__(self):
- super(Typical10MobileReloadPageSet, self).__init__(
- archive_data_file='data/typical_10_mobile.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
-
- for url in urls_list:
- self.AddStory(Typical10MobileReloadPage(url, self))
« no previous file with comments | « tools/perf/page_sets/tough_layer_cases.py ('k') | tools/perf/page_sets/typical_25.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698