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

Unified Diff: tools/perf/page_sets/power_cases.py

Issue 2718493003: Delete battor.power_cases and the power_cases page set (Closed)
Patch Set: Synced to head, where Ned is in the OWNERS file Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/page_sets/data/power_cases_002.wpr.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/power_cases.py
diff --git a/tools/perf/page_sets/power_cases.py b/tools/perf/page_sets/power_cases.py
deleted file mode 100644
index 0a59781da88503a25a3877cfbe3ca724ee7304be..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/power_cases.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2016 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.page import shared_page_state
-from telemetry import story
-
-
-URL_LIST = [
- 'https://webkit.org/blog-files/3d-transforms/poster-circle.html',
- # Does not autoplay on Android devices.
- 'https://www.youtube.com/watch?v=3KANI2dpXLw?autoplay=1',
- 'about:blank'
-]
-
-
-class PowerCasesPage(page_module.Page):
-
- def __init__(self, url, page_set, name=''):
- super(PowerCasesPage, self).__init__(
- url=url, page_set=page_set, name=name,
- credentials_path = 'data/credentials.json',
- shared_page_state_class=shared_page_state.SharedDesktopPageState)
- self.archive_data_file = 'data/power_cases.json'
-
- def RunPageInteractions(self, action_runner):
- action_runner.Wait(10)
-
-
-class PowerCasesPageSet(story.StorySet):
- """Power hungry pages, used for power testing."""
-
- def __init__(self):
- super(PowerCasesPageSet, self).__init__(
- archive_data_file='data/power_cases.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
-
- for url in URL_LIST:
- self.AddStory(PowerCasesPage(url, self))
« no previous file with comments | « tools/perf/page_sets/data/power_cases_002.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698