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

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

Issue 12278015: [Telemetry] Reorganize everything. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-add shebangs. 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 import discover
7 from telemetry import page_action
8
9 _page_action_classes = discover.Discover(os.path.dirname(__file__),
10 'action',
11 page_action.PageAction,
12 import_error_should_raise=True)
13
14 def GetAllClasses():
15 return list(_page_action_classes.values())
16
17 def FindClassWithName(name):
18 return _page_action_classes.get(name)
19
20 def RegisterClassForTest(name, clazz):
21 _page_action_classes[name] = clazz
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/adb_commands.py ('k') | tools/telemetry/telemetry/android_browser_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698