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

Unified Diff: tools/perf/page_sets/page_cycler/dom.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/page_cycler/bloat.py ('k') | tools/perf/page_sets/page_cycler/intl1.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/page_cycler/dom.py
diff --git a/tools/perf/page_sets/page_cycler/dom.py b/tools/perf/page_sets/page_cycler/dom.py
deleted file mode 100644
index 43ff10a9fdb5d940e23932c121f354fff5f06492..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/page_cycler/dom.py
+++ /dev/null
@@ -1,36 +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 DomPage(page_module.Page):
-
- def __init__(self, url, page_set):
- super(DomPage, self).__init__(url=url, page_set=page_set)
-
-
-class DomPageSet(story.StorySet):
-
- """ DOM page_cycler benchmark """
-
- def __init__(self):
- super(DomPageSet, self).__init__(
- # pylint: disable=line-too-long
- serving_dirs=set(['../../../../data/page_cycler/dom']))
-
- urls_list = [
- 'file://../../../../data/page_cycler/dom/HTMLDocument_write/',
- 'file://../../../../data/page_cycler/dom/Document_getElementById/',
- 'file://../../../../data/page_cycler/dom/DOMWindow_document/',
- 'file://../../../../data/page_cycler/dom/DOMWindow_window/',
- 'file://../../../../data/page_cycler/dom/Element_getAttribute/',
- 'file://../../../../data/page_cycler/dom/HTMLCollection_length/',
- 'file://../../../../data/page_cycler/dom/HTMLElement_className/',
- 'file://../../../../data/page_cycler/dom/HTMLElement_id/',
- 'file://../../../../data/page_cycler/dom/NodeList_length/'
- ]
-
- for url in urls_list:
- self.AddStory(DomPage(url, self))
« no previous file with comments | « tools/perf/page_sets/page_cycler/bloat.py ('k') | tools/perf/page_sets/page_cycler/intl1.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698