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

Unified Diff: tools/perf/page_sets/blank_page.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
Index: tools/perf/page_sets/blank_page.py
diff --git a/tools/perf/page_sets/blank_page.py b/tools/perf/page_sets/blank_page.py
index 7ffff30a62ca52fd07562b46205c06d526b96038..a7ce08e71a90ccd32a55735cab14bf3deae9be87 100644
--- a/tools/perf/page_sets/blank_page.py
+++ b/tools/perf/page_sets/blank_page.py
@@ -3,7 +3,6 @@
# found in the LICENSE file.
from telemetry.page import page as page_module
from telemetry import story
-from page_sets.startup_pages import BrowserStartupSharedState
class BlankPage(page_module.Page):
@@ -30,30 +29,3 @@ class BlankPageSet(story.StorySet):
super(BlankPageSet, self).__init__(verify_names=True)
self.AddStory(BlankPage('file://blank_page/blank_page.html',
self, 'blank_page.html'))
-
-
-class BlankPageTBM(page_module.Page):
-
- def __init__(self, url, page_set):
- super(BlankPageTBM, self).__init__(
- url, page_set=page_set,
- shared_page_state_class=BrowserStartupSharedState)
-
- def RunPageInteractions(self, action_runner):
- action_runner.ExecuteJavaScript(
- """
- this.hasRunRAF = 0;
- requestAnimationFrame(function() {
- this.hasRunRAF = 1;
- });
- """
- )
- action_runner.WaitForJavaScriptCondition("this.hasRunRAF == 1")
-
-
-class BlankPageSetTBM(story.StorySet):
- """A single blank page."""
-
- def __init__(self):
- super(BlankPageSetTBM, self).__init__()
- self.AddStory(BlankPageTBM('file://blank_page/blank_page.html', self))
« no previous file with comments | « tools/perf/page_sets/android_acceptance.py ('k') | tools/perf/page_sets/diagonal_scrolling_supported_shared_state.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698