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

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

Issue 2031803002: [tools/perf] Remove smoothness.tough_animated_image_cases (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/benchmarks/smoothness.py ('k') | tools/perf/page_sets/tough_animated_image_cases/gifs.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_animated_image_cases.py
diff --git a/tools/perf/page_sets/tough_animated_image_cases.py b/tools/perf/page_sets/tough_animated_image_cases.py
deleted file mode 100644
index 67193ead0d387fea410e2141db4243b15ed6ae32..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/tough_animated_image_cases.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2015 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 ToughAnimatedImageCasesPage(page_module.Page):
-
- def __init__(self, url, page_set):
- super(ToughAnimatedImageCasesPage, self).__init__(
- url=url, page_set=page_set)
-
- def RunPageInteractions(self, action_runner):
- with action_runner.CreateInteraction('ToughAnimatedImage'):
- action_runner.Wait(10)
-
-class ToughAnimatedImageCasesPageSet(story.StorySet):
-
- """
- Description: A collection of difficult animated image tests
- """
-
- def __init__(self):
- super(ToughAnimatedImageCasesPageSet, self).__init__()
-
- urls_list = [
- 'file://tough_animated_image_cases/gifs.html'
- ]
-
- for url in urls_list:
- self.AddStory(ToughAnimatedImageCasesPage(url, self))
« no previous file with comments | « tools/perf/benchmarks/smoothness.py ('k') | tools/perf/page_sets/tough_animated_image_cases/gifs.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698