Index: tools/perf/page_sets/system_health/loading_stories.py |
diff --git a/tools/perf/page_sets/system_health/loading_stories.py b/tools/perf/page_sets/system_health/loading_stories.py |
index b46b2c87b1cf859f3b6730f2bece6c74006d9daf..8f3fbc44ee6558f8e2d9892455b6290bc803e328 100644 |
--- a/tools/perf/page_sets/system_health/loading_stories.py |
+++ b/tools/perf/page_sets/system_health/loading_stories.py |
@@ -2,8 +2,6 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-import sys |
- |
from page_sets.system_health import platforms |
from page_sets.system_health import system_health_story |
@@ -13,12 +11,7 @@ from page_sets.login_helpers import google_login |
class _LoadingStory(system_health_story.SystemHealthStory): |
"""Abstract base class for single-page System Health user stories.""" |
- pass |
- |
- |
-def IterAllStoryClasses(): |
- return system_health_story.IterAllStoryClasses( |
- sys.modules[__name__], _LoadingStory) |
+ ABSTRACT_STORY = True |
################################################################################ |