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

Side by Side Diff: tools/telemetry/telemetry/page/all_page_actions.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 import os
5
6 from telemetry.test import discover
7 from telemetry.page import page_action
8
9 _page_action_classes = discover.Discover(
10 os.path.dirname(__file__),
11 os.path.join(os.path.dirname(__file__), '..', '..'),
12 'action',
13 page_action.PageAction,
14 import_error_should_raise=True)
15
16 def GetAllClasses():
17 return list(_page_action_classes.values())
18
19 def FindClassWithName(name):
20 return _page_action_classes.get(name)
21
22 def RegisterClassForTest(name, clazz):
23 _page_action_classes[name] = clazz
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/page/__init__.py ('k') | tools/telemetry/telemetry/page/block_page_benchmark_results.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698